.mt-4{
    margin-top: 16px;
}
.top-container{
    background-color: white;
}
.container{
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0 16px;
}
.content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 380px;
    width: 100%;
    margin: auto;
    gap: 32px;
    position: relative;
}
.top-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.header{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-section{
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}
.submit-btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--color-light-2);
    border-radius: 989px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}
.submit-btn{
    margin-top: 24px;
    background-color: var(--color-paragraph);
    color: white;
    transition: all 0.4s ease;
}
.submit-btn:hover{
    background-color: var(--color-paragraph);
    cursor: pointer;
}
#form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.no-dec{
    text-decoration: none;
    color: var(--color-paragraph);
}
.bold{
    font-weight: 700 !important;
}
.error-message{
    left: unset;
    top: 85px;
    right: 0;
}
.success-message{
    position: absolute;
    top: 120px;
}
