.login-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    padding: 20px;
    box-sizing: border-box;

}
.login-header{
    margin-bottom: 40px;
}

.login-form {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.welcome-text {
    font-size: 37px;
    background: linear-gradient(45deg, #aed6f1 100%, #aed6f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: 600;
    font-style: italic;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);

}

.password-forgotten {
    color: #aed6f1;
    text-decoration: none;
    font-size: 14px !important;
}

.password-forgotten:hover {
    text-decoration: underline;
}

.login-button-div {
    margin-bottom: 10px;
}

.input-group {
    margin-bottom: 20px;
}

.login-input {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.login-input:focus {
    outline: none;
    border-color: #0F9FE1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    transform: translateY(-1px);
}

.button-group {
    margin-top: 25px;
}

.login-butt {
    width: 100px;
    height: 100% !important;
    background: linear-gradient(45deg, #0F9FE1, #0F9FE1);
    border: 2px solid transparent;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin: 10px auto;
    display: block;
    padding: 0;
    outline: none;
    line-height: 1.5 !important;
    
    text-shadow: none;
    font-weight: bold;
}

.login-butt:hover {
    background: linear-gradient(45deg, #0F9FE1, #0F9FE1);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
}

.login-butt:active {
    transform: translateY(0);
    border: 2px solid #0F9FE1;
    outline: none;
}

.ui-button {
    height: 40px;
    line-height: 1.5 !important;
}

@media (max-width: 768px) {
    .login-form {
        padding: 20px;
        max-width: 90%;
    }

    .login-input {
        font-size: 14px;
        padding: 8px;
    }

    .login-butt {
        font-size: 14px;
        padding: 8px;
    }
}
