body {
    color: grey;
}
.input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.input-wrapper > div.input {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 5px !important;
    border: 1px solid #c6c3c3;
    height: 40px !important;
    width: 100%;
    border-left: none !important;
}

.input-wrapper > div.input i {
    padding-right: 15px;
    padding-left: 15px;
}

.input-wrapper > div.input label {
    background-color: #c6c3c3;
    border-right: 1px solid #c6c3c3;
    margin-bottom: 0 !important;
    display: flex;
    align-items: center;
    height: 40px !important;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.input-wrapper > div.input input {
    border: none !important;
    height: 100% !important;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    background-color: transparent !important;
}

.input-wrapper > div.input input:focus {
    outline: none !important;
}

.card {
    width: 400px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-body {
    width: 100%;
    padding: 2rem;
}

#login-form {
    display: flex;
    flex-direction: column;
    gap: 15px !important;
    padding: 15px 0px 15px 0px
}

.login-card-logo {
    font-size: 60px;
    color: #333333;

    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto;
}

.login-wrapper {
    background-color: #f3f1f1;
    height: 100vh;
    padding: 10px;
}

.login-form-container {
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10%;
}

.login-items {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%
}

.btn-pink {
    background-color: rgba(131, 4, 182, 0.87);
    color: white;
    box-shadow: 0 3px 6px rgba(99, 17, 172, 0.19), 0 2px 2px rgba(99, 17, 172, 0.23) !important;
    border: none;
}

.title {
    font-size: 40px;
    color: grey;
}

.session-title {
    font-size: 20px;
    color: grey;
    text-align: center;

}

.btn-pink:hover {
    background-color: rgba(184, 142, 210, 0.52); /* Green */
    color: grey;
    box-shadow: 0 6px 12px rgba(99, 17, 172, 0.19), 0 4px 4px rgba(99, 17, 172, 0.23) !important;
}

.btn-pink:disabled {
    background-color: grey; /* Green */
    color: #eae6e6;
    box-shadow: none !important;
}

.input-focus {
    border: 1px solid rgba(188, 82, 231, 0.87) !important;
    box-shadow: 0 3px 6px rgba(99, 17, 172, 0.19), 0 2px 2px rgba(99, 17, 172, 0.23) !important;
}

.loader {
    border: 3px solid #f3f3f3;
    border-radius: 50%;
    border-top: 3px solid rgba(121, 181, 220, 0.19);
    border-bottom: 3px solid rgba(121, 181, 220, 0.19);
    width: 20px;
    height: 20px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.errors {
    margin-top: -10px;
    margin-bottom: 5px;
    font-size: 12px;
}

#login-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}

.custom-alert-success{
    background-color: #c9e7b5;
    color: #255815;
    font-size: 1rem
}

.custom-alert-danger{
    background-color: #f8dcde;
    color: #fa040b;
    font-size: 1rem;
}