body {
    background-image: url(sign_in_background_2.jpg);
    background-size: cover;                      /* Covers entire viewport */
    background-position: center center;          /* Centers the image */
    background-repeat: no-repeat;                /* Don't tile the image */
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;}

/* THE BELLOW IS FOR STYLING THE PAGE TITLE ONLY */

.main-title {
  text-align: center;
  padding: 2rem;
  margin-bottom: 200px;}

    .title-style {
    font-size: 5rem;
    font-weight: 675;
    color: #2f2f2f;
    margin: 0;
    line-height: 1;           /* keeps it tight */
    letter-spacing: 0.5px;}

    .title-style .first-letter {
    font-size: 5rem !important;
    color: #1a8fe3 !important;
    font-weight: 675 !important;
    display: inline-block;
    margin-right: 8px;
    vertical-align: baseline;     
    line-height: 1;
    position: relative;
    text-shadow: 4px 4px 0px #00000040;
    transition: all 0.3s ease;}

/* THE BELOW IS TO STYLE THE LOGIN CONTRAINER AND ELLEMENTS WITHIN*/

.login-container {
    background-color: rgba(255, 255, 255, 0.695);
    padding: 40px;
    border-radius: 8px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    width: 500px;
    height: 450px;
    text-align: center;    }

h2 {
    margin-bottom: 20px;
    color: #2f2f2f;
    font-size: 40px;}

.form-group {
    margin-bottom: 15px;
    text-align: left;
    font-size: 15px;}

label {
    display: block;
    margin-bottom: 5px;
    color: #2f2f2f;
    font-weight: 650;}

input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #2f2f2f;
    border-radius: 4px;
    box-sizing: border-box;}

.forgot-password {
    display: block;
    margin-bottom: 20px;
    color: #a3364c;
    text-decoration: none;
    font-size: 18px;}

.forgot-password:hover {
    text-decoration: underline;}

.sign-in-btn {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    font-size: 18px;
    font-weight: 550;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;}

.sign-in-btn:hover {
    background-color: #004997;}

.user-entry-box-heading{
    font-size: 22px;}

.placeholder-text{
    font-size: 18px;}

h3{
    margin: 20px;
    font-weight: 200;}

.sign-up-btn{
    width: 100%;
    padding: 10px;
    background-color: #0052aa;
    color: white;
    font-size: 18px;
    font-weight: 550;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;}