.login-title {
    font-size: 30px;;
    font-weight: 700;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
    margin-top: 60px;
}

.login-card {
    position: relative;
    background: #ffffffc9;
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 80px 30px 30px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    width: 450px;
    z-index: 2;
}

.icon-circle {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #206ba4 0%, #206ba4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
    border: 5px solid #d6d6d6;
}

.icon-circle svg {
    width: 60px;
    height: 60px;
    stroke: white;
}

.login-input-group {
    position: relative;
    margin-bottom: 15px;
}

.login-input-icon {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.login-input-icon svg {
    width: 18px;
    height: 18px;
    stroke: #206ba4;
}

.login-input {
    width: 100%;
    padding: 10px 15px 10px 40px;
    font-size: 14px;
    color: #206ba4;
    background: transparent;
    border: none;
    border-bottom: 1px dotted  #b3b3b3;
    outline: none;
    transition: border-color 0.3s ease;
}

.login-input::placeholder {
    color: #206ba4;
}

.login-input:focus {
    border-bottom-color: #206ba4;
}

.login-input-error {
    border-bottom-color: #f44336;
}

.login-error-text {
    color: #f44336;
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.login-btn-wrapper {
    text-align: center;
}

#eye-icon-password,
#eye-off-icon-password {
    margin-top: 0;
    margin-right: 0;
}

.login-btn {
    border: 2px solid #206ba4;
    color: #206ba4;
    font-weight: bold;
    padding: 6px 25px 4px;
    border-radius: 25px;
    margin: 20px auto 0;
}

.login-btn:hover {
    background: #206ba4;
    border-color: #206ba4;
    color: #fff;
    cursor: pointer;
}

.login-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
