body {
    background-color: #f4f4f9;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    padding: 20px;
    color: #333;
}

.login-container {
    width: 100%;
    max-width: 400px;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    transition: transform 0.3s ease;
}

.login-container:hover {
    transform: translateY(-5px);
}

.login-form-text img {
    width: 70%;
    margin-bottom: 25px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.input-field {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-field label {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 8px;
}

.input-field input[type="email"],
.input-field input[type="text"],
.input-field input[type="password"] {
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    padding: 14px 15px;
    font-size: 1em;
    width: 100%;
    transition: border-color 0.3s ease;
    background-color: #f9f9f9;
    box-sizing: border-box;
}

.input-field input[type="email"]:focus,
.input-field input[type="text"]:focus,
.input-field input[type="password"]:focus {
    border-color: #007099;
    outline: none;
    box-shadow: 0 0 8px rgba(0, 112, 153, 0.2);
}

.input-field .toggle-password {
    position: absolute;
    right: 12px;
    top: 36px;
    cursor: pointer;
    color: #888;
    font-size: 1.2em;
    transition: color 0.3s;
}

.input-field .toggle-password:hover {
    color: #007099;
}


.btn-login {
    width: 100%;
    padding: 14px;
    font-size: 1em;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #007099, #005f80);
    border: none;
    border-radius: 8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 10px;
    box-sizing: border-box;
}

.btn-login:hover {
    background: linear-gradient(135deg, #005f80, #004f6a);
}

.error-toast {
    color: #d32f2f;
    text-align: center;
    margin-top: 10px;
    font-size: 0.9em;
}