body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.login-container {
    width: 300px;
    padding: 0 20px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding-bottom: 30px;
}
.profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin: 20px auto;
    overflow: hidden;
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.welcome-text {
    font-size: 20px;
    color: #212529;
    font-weight: 500;
    margin-bottom: 25px;
}
.inicio-text {
    font-size: 15px;
    color: #212529;
    font-weight: 500;
    margin-bottom: 25px;
    text-align: left;
}
.form-control {
    height: 40px;
    font-size: 13px;
    margin-bottom: 12px;
    padding: 8px 12px;
    border: none;
    border-bottom: 1px solid #dee2e6;
    border-radius: 0;
    background-color: transparent;
    box-shadow: none;
}
.form-control:focus {
    border-color: #007bff;
    box-shadow: none;
    outline: none;
}
.form-control::placeholder {
    color: #adb5bd;
}
.login-btn {
    background-color: #007bff;
    border: none;
    height: 40px;
    border-radius: 20px;
    width: 100%;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    margin: 25px 0 15px 0;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.3);
}
.login-btn:hover {
    background-color: #0056b3;
}
.links {
    margin-top: 20px;
}
.links a {
    display: block;
    color: #6c757d;
    text-decoration: none;
    font-size: 11px;
    line-height: 1.8;
}
.links a:hover {
    color: #007bff;
}