
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

#paige-register{
    font-family: "Montserrat", serif;
    padding: 30px;
    background-color: #F3F5F6;
    border-radius: 35px;
    max-width: 550px;
    input{
        padding: 10px;
        border-radius: 10px;
        width: 100%;
        color: #1D1D1B;
        font-weight: 400;
        border: none;
        &:first-of-type{
            margin-bottom: 14px;
        }
    }
    label{
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.5rem;
        letter-spacing: 0.32px;
    }
    button{
        width: 100%;
        cursor: pointer;
        text-align: center;
        padding: 10px 27px;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.5rem;
        letter-spacing: 0.32px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2b81d7;
        color: white;
        border: none !important;
        outline: none !important;
        display: flex;
        gap: 10px;
        margin-bottom: 16px;
        margin-top: 30px;
    
        &:hover {
            opacity: 0.7;
        }
    
        &__disabled {
            cursor: default;
            opacity: 0.7;
        }
    }
    a{
        color: #3498db;
    }
}

#paige-register-cobranding{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    gap: 10px;

    img{
        width: 135px;
    }
    p{
        font-size: 20px;
        font-weight: 400;
        line-height: 1.5rem;
        letter-spacing: 0.32px;
        margin-left: 10px;
        color: #1D1D1B;
    }
}

#paige-register-error{
    margin-top: 10px;
    font-size: .8em;
}

#paige-register-loader{
    border: 3px solid #f3f3f3; 
    border-top: 3px solid #3498db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: loaderSpin 2s linear infinite;
    display: none;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}