body {
    /* background: linear-gradient(135deg,rgb(231, 187, 121) 0%,rgb(135, 186, 235) 100%); */
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
    max-width: 550px;
    width: 100%;
    padding: 20px;
}

.card {
    border-radius: 1.5rem;
    border: none;
    /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
    overflow: hidden;
}

.card-header {
    background: transparent;
    border-bottom: none;
    text-align: center;
    padding: 2.5rem 2rem 1.5rem;
}

.card-header h3 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0;
}

.card-header .logo {
    width:  150px;
    height: 150px;
    margin-bottom: 1rem;
    background-color: rgba(255, 255, 254, 0.226);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.form-floating {
    margin-bottom: 1.25rem;
}

.form-floating input {
    border-radius: 20px;
    border: 1px solid #e0e0e0;
    padding: 1rem;
}

.form-floating input:focus {
    border-color: rgb(89, 172, 228);
    box-shadow: 0 0 0 0.25rem rgba(93, 198, 247, 0.25);
}

.input-group-text {
    background-color: transparent;
    border-left: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(230, 150, 59) 0%, rgb(233, 149, 93) 100%);
    border: none;
    border-radius: 20px;
    width: 100%;
    padding: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, rgb(87, 162, 223) 0%, rgb(115, 157, 230) 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.form-check-input:checked {
    background-color: rgb(231, 159, 92);
    border-color: rgb(231, 166, 81);
}

.forgot-password {
    text-align: center;
    margin-top: 1.5rem;
}

.forgot-password a,
.signup-link a {
    color: rgb(69, 143, 228);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.forgot-password a:hover,
.signup-link a:hover {
    color: #2575fc;
    text-decoration: underline;
}

.divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #e0e0e0;
    z-index: 1;
}

.divider span {
    background-color: white;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
    color: #777;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e0e0e0;
    background-color: white;
    color: #555;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}


.google {
    color: #db4437;
}

.input-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: none;
    border: none;
    color: #777;
    cursor: pointer;
}