@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Roboto:wght@100;300;400;500;700;900&display=swap');

:root {
    --roboto: 'Roboto', sans-serif;
    --pt: 'PT Sans', sans-serif;
    --playfair: 'Playfair Display', serif;
}

body {
    margin: 0;
    padding: 0;
}

.login-box {
    width: 400px;
    height: 440px;
    background: #7a221b;
    color: white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 100px 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

.loginpic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: calc(50% - 50px);
}

h1 {
    margin: 5;
    padding: 0px 0 20px;
    text-align: center;
    font-size: 25px;
    font-family: 'Playfair Display', serif;
}

.login-box input {
    width: 85%;
    margin-bottom: 20px;
    height: 25px;
    background-color: white;
    border-radius: 1px solid black;
    font-family: 'PT Sans', sans-serif;
}

    .login-box input[type="text"], input[type="password"] {
        font-size: 15px;
        font-family: 'PT Sans', sans-serif;
    }

.login-box a {
    text-decoration: none;
    font-size: 13px;
    line-height: 20px;
    color: gold;
    font-family: 'PT Sans', sans-serif;
}

    .login-box a:hover {
        color: goldenrod;
        font-family: 'PT Sans', sans-serif;
    }

::placeholder {
    color: grey;
}

button {
    border: none;
    outline: none;
    height: 30px;
    background-color: #bb0035;
    color: white;
    font-size: 15px;
    width: 50%;
    font-family: 'PT Sans', sans-serif;
    width: 1;
}

    button:hover {
        cursor: pointer;
        background-color: #bb0035;
        color: black;
        border: 1px solid black;
        border: none;
        font-family: 'PT Sans', sans-serif;
    }

/*Register*/

.reg-box {
    width: 470px;
    height: 700px;
    background: #7a221b;
    color: white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 100px 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

    .reg-box input {
        width: 88%;
        margin-bottom: 20px;
        height: 25px;
        background-color: white;
        border-radius: 1px solid black;
        font-family: 'PT Sans', sans-serif;
    }

        .reg-box input[type="text"], input[type="password"], input[type="select"] {
            font-size: 15px;
            font-family: 'PT Sans', sans-serif;
        }

        .reg-box input[type="file"] {
            width: 230px;
            color: black;
            font-size: 12px;
            font-family: 'PT Sans', sans-serif;
        }

        .reg-box input[type="checkbox"] {
            width: 13px;
            height: 13px;
            padding: 0;
            margin: 0;
            vertical-align: bottom;
            position: relative;
            top: -1px;
            *overflow: hidden;
            font-size: 10px;
            font-family: 'PT Sans', sans-serif;
        }

    .reg-box label {
        color: white;
        font-size: 12px;
        font-family: 'PT Sans', sans-serif;
    }

    .reg-box input[type="submit"] {
        border: none;
        outline: none;
        height: 30px;
        background: #bb0035;
        color: white;
        font-size: 15px;
        width: 50%;
        font-family: 'PT Sans', sans-serif;
    }


        .reg-box input[type="submit"]:hover {
            cursor: pointer;
            background: #bb0035;
            color: black;
            border: 1px solid black;
            border: none;
            font-family: 'PT Sans', sans-serif;
        }

    .reg-box a {
        text-decoration: none;
        font-size: 13px;
        color: gold;
        font-family: 'PT Sans', sans-serif;
    }

        .reg-box a:hover {
            color: goldenrod;
            font-family: 'PT Sans', sans-serif;
        }

::placeholder {
    color: grey;
}

.reg-box h1 {
    padding-top: 0px;
    margin: 0px;
    top: 0px;
    font-family: 'Playfair Display', serif;
}

select {
    border: 1px solid #ccc;
    vertical-align: top;
    height: 25px;
    margin: 0px;
    padding: 0px;
}

/*Charity Register*/

.c-box {
    width: 470px;
    height: 680px;
    background: #7a221b;
    color: white;
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 100px 80px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

    .c-box input {
        width: 88%;
        margin-bottom: 20px;
        height: 25px;
        background-color: white;
        border-radius: 1px solid black;
        font-family: 'PT Sans', sans-serif;
    }

        .c-box input[type="text"], input[type="password"], input[type="select"] {
            font-size: 15px;
            font-family: 'PT Sans', sans-serif;
        }

        .c-box input[type="file"] {
            width: 230px;
            color: black;
            font-size: 12px;
            font-family: 'PT Sans', sans-serif;
        }

        .c-box input[type="checkbox"] {
            width: 13px;
            height: 13px;
            padding: 0;
            margin: 0;
            vertical-align: bottom;
            position: relative;
            top: -1px;
            *overflow: hidden;
            font-size: 10px;
            font-family: 'PT Sans', sans-serif;
        }

    .c-box label {
        color: white;
        font-size: 12px;
        font-family: 'PT Sans', sans-serif;
    }

    .c-box input[type="submit"] {
        border: none;
        outline: none;
        height: 30px;
        background: #bb0035;
        color: white;
        font-size: 15px;
        width: 50%;
        font-family: 'PT Sans', sans-serif;
    }


        .c-box input[type="submit"]:hover {
            cursor: pointer;
            background: #bb0035;
            color: black;
            border: 1px solid black;
            border: none;
            font-family: 'PT Sans', sans-serif;
        }

    .c-box a {
        text-decoration: none;
        font-size: 13px;
        color: gold;
        font-family: 'PT Sans', sans-serif;
    }

        .c-box a:hover {
            color: goldenrod;
            font-family: 'PT Sans', sans-serif;
        }

::placeholder {
    color: grey;
}

.reg-box h1 {
    padding-top: 0px;
    margin: 0px;
    top: 0px;
    font-family: 'Playfair Display', serif;
}

select {
    border: 1px solid #ccc;
    vertical-align: top;
    height: 25px;
    margin: 0px;
    padding: 0px;
}
