﻿.Register-page {
    max-width: 550px;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 100px;
}

.Register-p .Register-span {
    opacity: 0.5;
    font-size: 19px;
}

.Register-p a {
    font-size: 20px;
    color: black;
    text-decoration: none;
    margin-left: 0px;
}

.Form-control {
    border-radius: 0;
    box-shadow: none !important;
    border: 1px solid rgb(189, 189, 189) !important;
    padding: 9px;
    font-size: 18px;
}

    .Form-control:focus {
        border: 1px solid black !important;
    }

.Create-account {
    border: 0;
    border-radius: 0;
    margin-bottom: 17px;
    text-transform: uppercase;
    width: 100%;
    background-color: black !important;
    padding: 10px;
}

.Register-a {
    position: relative;
    padding-bottom: 1px;
    color: black;
    font-size: 15px;
    margin-left: 10px;
    margin-bottom: 80px !important;
}

    .Register-a:hover {
        color: black;
    }

    .Register-a::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 0;
        height: 1px;
        background-color: black;
        transition: 0.2s ease-in-out;
    }

    .Register-a:hover::after {
        width: 100%;
    }

