.form-parent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}
.form {
    max-width: 90vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 40px;
    outline: 2px solid grey;
}
.form-group {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
    display: flex;
}
.row {
    display: flex;
    gap: 10px;
    width: 100%;
}
.form input, .form select, .expirationParent {
    padding: 5px 20px;
    border: 1px solid #E9E9E9;
    border-radius: 8px;
    line-height: 1.85;
    flex: 1;
}
.form label {
    color: black;
}
.form select {
    height: 36.66px;
    width: 100%;
}
.form > .form-group > input {
    width: 100%;
    box-sizing: border-box;
}
.form > .row > .form-group > input {
    width: 100%;
    box-sizing: border-box;
}
.form i {
    position: absolute;
    right: 10px;
    padding-top: 8px;
    padding-bottom: 8px;
    cursor: pointer;
    color: black;
    font-size: 21px;
}
.requiredStar {
    color: red;
    font-size: 25px;
    position: absolute;
    top: 3px;
    left: 4px;
}
.form > button {
    padding: 10px 30px;
    border: 0;
    border-radius: 8px;
    line-height: 1.85;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--lime);
    transition: background-color .5s ease, color .5s ease;
}
.form > button:hover {
    background-color: var(--lime-light);
    cursor: pointer;
}
#forgot-password {
    width: 100%;
    padding-top: 20px;
    text-align: center;
}
#successArea {
    display: none;
    color: green;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 18px;
    background-color: var(--lime-light);
    border: 2px solid green;
    border-radius: 7px;
}
#errorArea {
    display: none;
    color: red;
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 10px;
    font-size: 18px;
    font-weight: 600;
    background-color: pink;
    border: 1px solid red;
    border-radius: 7px;
    max-width: 80%;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    color: black;
    padding: 5px;
}

tr:not(:first-child):hover {
    background-color: lightgray;
}

#topMessage {
    margin-top: 80px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    max-width: 90%;
}
#topMessage2 {
    margin-top: 10px;
    color: black;
    font-size: 18px;
    font-weight: 700;
    max-width: 90%;
}

.form-login, .form-register {
    outline: none;
    box-shadow: rgba(0, 0, 0, 0.35) 0 5px 15px;
    max-width: 85%;
}

@media (max-width: 600px) {
    #topMessage, #topMessage2 {
        font-size: 14px;
    }
}
