html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

/* Kill normal page spacing/wrappers just for this page */
body,
main,
.main,
.content,
.container,
.container-fluid,
.page,
#content,
#main {
    margin: 0 !important;
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
    min-height: 100% !important;
}

/* Hide site footer / decorative bottom stuff on login page */
footer,
.site-footer,
.page-footer,
.footer,
.footer-area,
.footer-wrapper {
    display: none !important;
}

/* Fullscreen register wrapper */
.register-page {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #f6f4f1;
    z-index: 9999;
    overflow: hidden;
}

.register-left {
    background: #f6f4f1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.register-box {
    width: 100%;
    max-width: 470px;
    padding: 40px 48px;
    box-sizing: border-box;
}

.register-title {
    margin: 0 0 18px;
    text-align: center;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #3f3f3f;
}

.register-subtitle {
    margin: 0 0 60px;
    text-align: center;
    font-size: 15px;
    color: #707070;
}

.form-group {
    margin-bottom: 26px;
}

.form-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #cfcfcf;
    background: transparent;
    padding: 12px 0;
    font-size: 14px;
    color: #333;
    outline: none;
    box-shadow: none;
}

.form-input:focus {
    border-bottom: 1px solid #111;
}

.register-links {
    margin: 8px 0 34px;
}

.forgot-link {
    font-size: 12px;
    letter-spacing: 1px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.register-button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    padding: 15px 18px;
    font-size: 14px;
    letter-spacing: 3px;
    cursor: pointer;
    margin-bottom: 30px;
}

.register-button:hover {
    opacity: 0.92;
}

.social-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
}

.social-link {
    text-decoration: none;
    color: #111;
    font-size: 22px;
    font-weight: 600;
}

.login-page-link {
    text-align: center;
}

.login-page-link a {
    color: #7a7a7a;
    text-decoration: underline;
    text-underline-offset: 4px;
    font-size: 13px;
    letter-spacing: 2px;
}

.register-right {
    position: relative;
    height: 100%;
    background: url('../img/registerpageimage.jpg') center center / cover no-repeat;
}

.register-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
    .register-page {
        grid-template-columns: 1fr;
    }


    .register-right {
        display:none;
    }

    .register-left {
        height: 100%;
    }

    .register-box {
        max-width: 520px;
    }
}


