﻿/*@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');*/

body {
    position: relative;
    margin: 0;
    padding: 0;
    background-image: url("/images/WhiteHouse_Register.png"), url("/images/WhiteHouse_Register.png");
    background-repeat: no-repeat, no-repeat;
    background-size: 60% 120%, 50% 100%;
    background-position: left center, right center;
    height: 100vh;
}

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.51);
        z-index: -1;
    }

.register-container {
    display: flex;
    justify-content: right;
    align-items: center;
}

.register-card {
    background-color: rgba(245, 246, 251, 1) !important;
    border-radius: 30px;
    height: 95vh;
    width: 45vw;
    min-width: 500px;
    top: 1rem;
    right: 5rem;
    padding-right: 1rem;
}

.card-body {
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #a6a6a6 transparent;
}

.register-card-body {
    /*padding-bottom: 5rem;*/
    padding-left: 5rem;
    padding-right: 4rem;
}

    .register-card-body::-webkit-scrollbar {
        width: 6px;
        max-height: 200px;
    }

    .register-card-body::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 10px;
    }

    .register-card-body::-webkit-scrollbar-thumb {
        background-color: #a6a6a6;
        border-radius: 10px;
        border: 1px solid transparent;
    }

    .register-card-body::-webkit-scrollbar-button:single-button {
        display: block;
        height: 8px;
        background-color: #ccc;
        border-radius: 10px;
    }

        .register-card-body::-webkit-scrollbar-button:single-button:vertical:decrement {
            background: linear-gradient(to bottom, #ccc, #aaa);
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
        }

        .register-card-body::-webkit-scrollbar-button:single-button:vertical:increment {
            background: linear-gradient(to top, #ccc, #aaa);
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }

.register-heading-1 {
    font-family: raleway;
    font-size: 32px;
    font-weight: 700;
    color: rgba(39, 52, 94, 1) !important;
}

.register-heading-2 {
    font-family: raleway;
    font-size: 18px;
    font-weight: 500;
    color: rgba(131, 139, 165, 1) !important;
}

.register-primary-text {
    font-family: raleway;
    font-size: 18px;
    font-weight: 500;
    color: rgba(197, 155, 52, 1) !important;
}

    .register-primary-text.t-and-c {
        font-size: 16px;
    }

.register-secondary-text {
    font-family: raleway;
    font-size: 16px;
    font-weight: 500;
    color: rgba(131, 139, 165, 1) !important;
    text-decoration: none;
}

.register-input {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(178, 184, 203, 1);
    height: 55px;
    font-size: 18px;
}

.form-check-input {
    width: 1.5rem;
    height: 1.5rem;
}

.form-check-label {
    margin-left: 1rem;
}

@media (max-width: 991.98px) {

    .register-card {
        min-width: 31rem;
        right: 0.75rem;
    }

    .register-card-body {
         padding-left: 0rem; 
         padding-right: 0rem; 
    }

    .register-heading-1 {
        font-size: 26px;
    }

    .register-heading-2 {
        font-size: 14px;
    }

    .register-primary-text {
        font-size: 14px;
    }

        .register-primary-text.t-and-c {
            font-size: 14px;
        }

    .register-secondary-text {
        font-size: 14px;
    }

    .register-input {
        font-size: 14px;
    }    
}