body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
section{
    overflow: hidden;
}

/* Notification */
#notification-container {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}
.notification {
    padding: 12px 20px;
    border-radius: 8px;
    min-width: 280px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Urbanist, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    animation: slideInDown 0.4s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    transition: all 0.3s ease;
    pointer-events: auto;
    cursor: pointer;
    text-transform: uppercase;
}
@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.notification.success { background: rgb(66, 74, 61); color: #fff; border-left: 4px solid #2ecc71; }
.notification.error   { background: #fff; color: #c0392b; border-left: 4px solid #c0392b; }
.notification.warning { background: #fff; color: #e67e22; border-left: 4px solid #e67e22; }
.notification.info    { background: rgb(66, 74, 61); color: #fff; border-left: 4px solid #3498db; }
.notification i { font-size: 16px; }

.registerWrp{
    height: 100vh;
}
.registerOverlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.22);
    top: 0;
    left: 0;
}
.registerBackground{
    width: 100%;
    height: auto;
    display: block;
}
.registerFormWrp{
    position: absolute;
    width: 75%;
    height: -webkit-fit-content;
    height: fit-content;
    max-height: 600px;
    left: 50%;
    top: 48%;
    transform: translate(-50%,-50%);
}
.registerFormCont{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    justify-content: end;
}
.registerFormPart{
    width: 100%;
    max-width: 500px;
    height: 100%;
    background: rgba(255, 255, 255, .8);
    border-radius: 16px;
    padding: 20px 0;
}
.registerFormSubPart{
    height: 100%;
    padding: 0 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.registerFormSingle{
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.registerFormSingle h1{
    color: rgb(66, 74, 61);
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    margin: 0;
}
.signInWithGoogleBtn{
    background: #fff;
    display: flex;
    line-height: 26px;
    margin-bottom: 10px;
    font-weight: 600;
    padding: 10px 15px;
    width: -webkit-fit-content;
    width: fit-content;
    cursor: pointer;
    border: 1px solid #d1d1d1;
    border-radius: 10px;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
    color: #000;
    text-decoration: none;
    transition: all .2s ease-in-out;
}
.signInWithGoogleBtn:hover{
    background: rgb(66, 74, 61);
    color: #fff;
}
.googleSignIconCont{
    height: 26px;
    width: 26px;
    margin-right: 10px;
}
.registerFormSingle p{
    margin: 10px 0 20px 0;
    font-family: Urbanist, sans-serif;
    color: #000;
    line-height: 24px;
}
.registerInputCont{
    position: relative;
    width: 100%;
    max-width: 400px;
    font-family: Urbanist, sans-serif;
}
.registerInputSingle{
    width: calc(100% - 90px);
    height: 40px;
    padding: 8px 45px 8px 45px;
    font-family: Urbanist, sans-serif;
    font-size: 18px;
    border: none;
    background: #f1f1f1;
    border-radius: 3px;
    margin-top: 10px;
}
#nameInput{
    margin: 0;
}
.registerInputIcon{
    position: absolute;
}
.nameIcon{
    top: 17px;
    left: 15px;
}
.emailIcon{
    top: 27px;
    left: 15px;
}
.passwordIcon{
    top: 25px;
    left: 15px;
}

.registerSubmitBtn{
    margin-top: 16px;
    min-width: 166px;
    cursor: pointer;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    width: 200px;
    border: 3px solid #fff;
    border-radius: 10px;
    font-size: 20px;
    font-family: Montserrat, sans-serif;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    background: rgb(66, 74, 61);
    transition: all .2s ease-in-out;
}
.registerSubmitBtn:hover{
    border: 3px solid rgb(66, 74, 61);
    color: rgb(66, 74, 61);
    background: #fff;
}
.inputCharCounter{
    width: 30px;
    height: 30px;
    position: absolute;
    right: 8px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #666;
}
.inputWarning{
    display: none;
    margin: 0 0 0 10px !important;
    color: red !important;
    font-size: 14px;
    text-align: left;
    width: 100%;
    max-width: 400px;
}
.inputRulesMark{
    position: absolute;
    top: 20px;
    right: 14px;
    cursor: pointer;
}
#nameMark{
    top: 10px;
}
.inputExclamationCont{
    display: none;
    border: 1px solid #fff;
    padding: 10px;
    text-align: left;
    position: absolute;
    min-width: 130px;
    top: 0;
    right: 0;
    background: rgb(66, 74, 61);
    z-index: 100;
    border-radius: 16px;
}
.inputExclamationCont p{
    margin: 0;
    font-size: 14px;
    line-height: 14px;
    color: #fff;
}
.registerCheckboxCont{
    text-align: left;
    font-size: 14px;
    height: 30px;
    line-height: 30px;
    display: flex;
    align-items: center;
    font-family: Urbanist, sans-serif;
}
.registerCheckboxCont input{
    accent-color: #424A3D;
    cursor: pointer;
}
.registerCheckboxCont a{
    color: inherit;
}
.inputShowPassword{
    position: absolute;
    cursor: pointer;
    right: 36px;
    top: 15.9px;
}
