﻿
#Heading {
    font-size: 50px;
    text-align: center;
    font-weight: 900;
    margin: 30px 0px 0px 0px;
    font-family: 'Work Sans', sans-serif;
}
#HeadingPara {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Nunito', sans-serif;
}
#RegisterLink {
    text-decoration: underline;
    cursor: pointer;
    color: black;
    font-size: 17px;
    font-weight:600
}
.form-label {
    font-size: 16px;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}
.form-control {
    font-size: 15px;
    border: 2px solid black;
    border-radius: 7px;
    font-family: 'Nunito', sans-serif;
    padding: 8px 10px;
}
.btn {
    background-color: #e50069;
    color: white;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 10px;
    font-family: 'Nunito', sans-serif;
}
@media (max-width: 808px) {
    .form-control {
        font-size: 15px;
    }
    .form-label {
        font-weight: 700;
        font-size: 15px;
    }
    #Heading {
        font-size: 35px;
        font-weight: 800;
        margin: 20px 0px 0px 0px;
    }

    #HeadingPara {
        text-align: center;
        font-size: 15px;
    }
    .btn {
        font-size: 15px;
    }
}