﻿@media screen and (max-width:700px) {
    /*phones and small devices*/

    .reg-form {
        width: 90%;
    }

    .center {
        margin: auto;
        padding: 30px;
        border: 0.1px none #32325D;
        border-radius: 3px;
        width: 90%;
    }
}

@media screen and (min-width:701px) {
    /*tablets and such devices*/

    .reg-form {
        width: 450px;
    }

    .center {
        margin: auto;
        padding: 30px;
        border: 0.1px none #32325D;
        border-radius: 3px;
        width: 450px;
    }
}

.reg-submit {
    width: 100%;
    padding: 14px 20px;
    background-color: royalblue;
    color: white;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    font-size: large
}

    .reg-submit:hover {
        background-color: darkblue
    }

.reg-submit-work {
    width: 100%;
    padding: 14px 20px;
    background-color: white;
    color: darkblue;
    margin: 8px 0;
    border: 1px solid darkblue;
    border-radius: 4px;
    font-size: large
}

    .reg-submit-work:hover {
        background-color: darkblue;
        color: white;
    }

.hr1 {
    border: 0.01px solid;
    border-color: gray;
    border-radius: 3px;
    margin-bottom:25px;
}

.terms-txt {
    font-size: small;
    color: gray
}

.validation-note {
    display: inline;
    color: #f00
}

.reg-label {
    width: 100%;
    font-size: large;
}



.reg-input {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: large;
}


