* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    background-color: #bde2ef;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.login-container {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
h2 {
    font-size: 1.5em;
    color: #00a4ff;
    margin-bottom: 10px;
}
p {
    color: #4f4f4f;
    font-size: 14px;
    margin-bottom: 20px;
}
.alert {
    font-size: 14px;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    text-align: left;
}
.alert-danger {
    background-color: #ffcccc;
    color: #e60000;
}
.alert-success {
    background-color: #ccffcc;
    color: #008000;
}
.input-group {
    margin-bottom: 15px;
    text-align: left;
}
.input-group label {
    font-size: 12pt;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}
input[type="text"],
input[type="password"] {
    padding-left: 35px;
}
button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #00a4ff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
button:hover {
    background-color: #007acc;
}
.validation-message {
    color: red;
    font-size: 10pt;
    margin-top: 5px;
    display: none;
}
a {
    display: block;
    color: #00a4ff;
    font-size: 12px;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}
a:hover {
    color: #007acc;
}
.input-group input[type="text"],
.input-group input[type="password"] {
    position: relative;
    padding-left: 35px;
}
.input-group i {
    position: absolute;
    left: 10px;
    top: 35px;
    color: #00a4ff;
}
.clear {
    visibility: hidden;
    font-size: 1pt;
}
