* {
    font-family: "Poppins", sans-serif;
}
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 95vh;
}

.heading-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.heading-wrapper h1 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #434343;
    font-weight: 600;
}
.required {
    color: red;
}

label {
    font-size: 16px;
    color: black;
    font-weight: 500;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.flex-col {
    flex-direction: column;
    margin: 8px;
}

.flex-col input {
    font-size: 15px;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid rgb(27, 144, 217);
    outline: none;
}
.flex-row {
    flex-direction: row;
    padding-top: 10px;
    justify-content: end;
    align-items: center;
    gap: 10px;
}
.flex-col button {
    padding: 10px;
    cursor: pointer;
    background-color: rgb(27, 144, 217);
    border: none;
    color: white;
    border-radius: 5px;
    font-size: 16px;
    margin-top: 10px;
}
.flex-col button:hover {
    border: none;
    background-color: rgb(32, 128, 188);
}
.validation-error {
    color: red;
    font-size: 12px;
}
.flex-col a {
    color: #01acf1;
    margin-top: 10px;
    text-align: end;
    color: red;
}
.additional-info {
    display: flex;
    gap: 82px;
    padding: 5px;
    margin-top: 12px;
    margin-bottom: -15px;
}
