.login-form-container { .form-control, .btn { transition: all 0.3s ease; } .input-group { border-radius: 0.5rem; transition: all 0.3s ease; &:focus-within { .input-group-text { border-color: #86b7fe; background-color: #f8f9fa; color: #0d6efd; } .form-control { border-color: #86b7fe; box-shadow: none; } .btn { border-color: #86b7fe; } } .input-group-text { background-color: #f8f9fa; border: 1px solid #dee2e6; transition: all 0.3s ease; padding: 0.6rem 1rem; color: #6c757d; i { font-size: 1.1rem; } } .form-control { border: 1px solid #dee2e6; padding: 0.6rem 1rem; font-size: 0.95rem; &:focus { box-shadow: none; } &::placeholder { color: #adb5bd; font-size: 0.9rem; } } .btn { border: 1px solid #dee2e6; padding: 0.6rem 1rem; &:hover { background-color: #e9ecef; } i { font-size: 1.1rem; color: #6c757d; } } } .form-check-input:checked { background-color: #0d6efd; border-color: #0d6efd; } .submit-button { margin-top: 30px; border-radius: 10px; transition: all 0.3s ease; padding: 0.8rem 1.5rem; font-size: 1rem; &:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); } &:not(:disabled) { background: linear-gradient(145deg, #0d6efd, #0b5ed7); border: none; &:hover { background: linear-gradient(145deg, #0b5ed7, #0a58ca); box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25); } } &:disabled { opacity: 0.7; } } .google-btn { margin-top: 20px; padding: 0.8rem; border-radius: 10px; transition: all 0.3s ease; font-weight: 500; &:hover { background-color: #f8f9fa; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.1); color: #000; } .google-icon { width: 20px; height: 20px; } } .position-relative { .divider { margin: 1.5rem 0; opacity: 0.25; } .divider-text { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); background-color: white; padding: 0 1rem; color: #6c757d; font-size: 0.9rem; } } .alert { animation: fadeInDown 0.3s ease-out; } } @keyframes fadeInDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }