* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

.login-container {
    height: 100vh;
    background: linear-gradient(45deg, #252946, #3e4370);
}

.login-box {
    padding: 30px;
    background-color: #f7f8ff;
    border-radius: 10px;
    box-shadow: 0 4px 8px #20243e;
    width: 100%;
    max-width: 450px;
}

.login-box img {
    height: 60px;
    width: 60px;
}
.login-head {
    font-weight: bold;
    text-align: center;
    color: #424776;
}

form {
    padding-top: 10px;
}
form label {
    color: #7e8193;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 15px
}

form input[type="text"],
form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 15px;
    border-radius: 25px;
    border: 2px solid #dbdeeb;
    background: #edf1fa;
    padding-left: 20px;
    outline: none;
    transition: all 0.1s;
}
form input[type="text"]::placeholder,
form input[type="password"]::placeholder {
    color: #a8aab9;
}
form input[type="text"]:hover,
form input[type="password"]:hover {
    border: 2px solid #c0c2cb;
}
form input[type="text"]:focus,
form input[type="password"]:focus {
    border: 2.5px solid #5c81bfcf !important;
    box-shadow: 0 3px 5px #dbdeeb;
    color: #5c80bf;
    background: #f1f5fc;
}

form button {
    margin-top: 25px;
    width: 100%;
    padding: 15px;
    background: #3a3f67;
    font-size: 1.2rem;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 2px 5px #7e8193;
}

form button:hover {
    background-color: #2a2e4f;
    box-shadow: 0 3px 7px #7e8193;
}

.text-muted {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
}

.text-muted span {
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    color: #424776;
}

.text-muted span:hover {
    text-decoration: underline;
}

@media (max-width: 500px) {
    .login-box {
        width: 95%;
    }
}
