#login_error,
#forgot_password_error {
    color: red;
    width: 100%;
    text-align: center;
}

#login_success,
#forgot_password_success {
    color: green;
    width: 100%;
    text-align: center;    }

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: auto;
}

.background-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.content-wrapper {
    display: flex;
    flex-direction: row;
    width: 90%;
    max-width: 1200px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.illustration {
    flex: 3;
    background: linear-gradient(135deg, #6e3adc, #4facfe);
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration img {
    max-width: 80%;
    height: auto;
}

.login-container {
    flex: 2;
    padding: 10px 30px 10px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login-header {
    margin-bottom: 20px;
    text-align: center;
}

.login-header h1 {
    font-size: 26px;
    margin: 0;
    color: #4facfe;
}

.login-header p {
    font-size: 14px;
    color: #777;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-sizing: border-box;
}

.btn {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background: #4facfe;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn:hover {
    background: #3a9bdc;
}

.forgot-link {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #4facfe;
    text-decoration: none;
    text-align: center;
}

.forgot-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }

    .illustration {
        display: none;
    }

    .login-container {
        flex: 1;
        width: 100%;
    }
    form {
        padding: 10px !important;
    }
}
form {
    width: 100%;
    padding: 20px 40px 20px 40px;
    border: 1px solid #d8d8d8;
}

.logo{
    width: 100%;
    max-width: 170px;
}