body.login {
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.card.login-form {
    max-width: 400px;
    margin: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.card-body {
    padding: 30px 50px 30px 50px;
}

.card-title {
    font-size: 1.5em;
    margin-bottom: 1em;
    color: #333;
}

.form-group {
    margin-bottom: 1em;
    position: relative;
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 1em;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.btn {
    background-color: #28a745;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

    .btn:hover {
        background-color: #218838;
    }

.alert {
    margin-top: 1em;
    padding: 10px;
    color: white;
    background-color: #dc3545;
    border-radius: 4px;
    text-align: center;
}

.text-gray {
    color: #6c757d;
}

.text-gray-light {
    color: #dcdcdc;
}

.position-absolute {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.d-flex {
    display: flex;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.small-text {
    text-align: center;
    margin-top: 20px;
    font-size: 0.8em;
    color: #6c757d;
}



.form-group {
    position: relative;
}

    .form-group .ion {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        font-size: 20px;
        color: #999;
        padding-bottom: 15px;
    }
