/* General Styles */
body {
   
    background: linear-gradient(to right, #6a11cb, #2575fc);
}

/* Login Container */
.login-form-container {
    background: white;
    padding: 30px;
    width: 350px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
        place-self: anchor-center;
    margin: 20%;
}

/* Heading */
.login-form-container h2 {
    color: #333;
    margin-bottom: 20px;
}

/* Labels */
label {
    display: block;
    text-align: left;
    margin-top: 10px;
    font-weight: bold;
    color: #444;
}

/* Input Fields */
input[type="text"],
input[type="password"] {
    width: 95%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
    transition: 0.3s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus {
    border-color: #6a11cb;
}

/* Remember Me Checkbox */
input[type="checkbox"] {
    margin-top: 10px;
}

/* Login Button */
.login-button {
    width: 100%;
    background: #6a11cb;
    color: white;
    padding: 10px;
    border: none;
    margin-top: 15px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-button:hover {
    background: #2575fc;
}

/* Links */
a {
    text-decoration: none;
    color: #6a11cb;
    font-size: 14px;
}

a:hover {
    text-decoration: underline;
}

/* Error Message */
.msg {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

/* Terms of Use */
h5 {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
}

h5 a {
    font-weight: bold;
}
@media only screen and (max-width: 480px) {
    .login-form-container {
   
    width: 75%;
}}