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;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding-bottom: 30px;
}
.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0px auto;
    overflow: hidden;
    background-color: white;
   
}
.profile-img img {
    width: auto;
    height: 45px;
    margin-top: 20px;
}
.welcome-text {
    font-size: 30px;
    color: #212529;
    font-weight: 500;
    margin-bottom: 15px;
}
.inicio-text {
    font-size: 15px;
    color: #212529;
    margin-bottom: 10px;
    text-align: left;
    margin-top: 15px;;
}
.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: #c5171b;
    border: none;
    height: 40px;
    border-radius: 10px;
    width: 100%;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    margin: 25px 0 15px 0;
    font-weight: 500;
   
}
.login-btn:hover {
    background-color: #e81224;
}
.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;
}