@import url('https://fonts.googleapis.com/css2?family=Londrina+Solid&family=Quicksand:wght@400;600&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}
.navbar-brand {
  font-family:'Londrina Solid', cursive;
  font-size: 30px;
  letter-spacing: 2px;
}
nav a {
  cursor: pointer;
}
#home-page, #login-page, #register-page {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/samsung-banner.jpg');
    height: 90vh;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.hero-text {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.hero-text h1 {
    letter-spacing: 10px;
    font-family:'Londrina Solid', cursive;
}
#login-page, #register-page {
  padding: 30px;
}
#login-page .container {
  width: 400px;
}
#register-page .container {
    width: 600px;
}
.heading {
    color: white;
    margin-bottom: 30px;
    letter-spacing: 3px;
    font-weight: bold;
    text-align: center;
}
.form-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 71vh;
    box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -webkit-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
}
.form-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 60%;
    text-align: center;
}
.form-box h4{
    font-weight: bold;
    color: #fff;
}
.form-box .form-input{
    position: relative;
}
.form-box .form-input input{
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
    border:none;
    border-radius: 5px;
    outline: none;
    background: white;
    padding-left: 45px;
    font-weight: bold;
}
.name {
    padding-left: 10px;
}
.form-box .form-input span{
    position: absolute;
    top: 6px;
    width: 40px;
    color: #777;
    font-size: 17px;
}
.form-box .form-input input::placeholder{
    padding-left: 0px;
}
.form-box .form-input input:focus,
.form-box .form-input input:valid{
    border-bottom: 2px solid #48403d;
}
.form-box button[type="submit"]{
    border: none;
    cursor: pointer;
    width: 150px;
    height: 40px;
    border-right: 5px;
    background-color: #fff;
    color: #000;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: 0.5s;
}

.form-box button[type="submit"]:hover{
    box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -webkit-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 9px 10px -2px rgba(0,0,0,0.55);
    background-color: #343a40;
    color: white;
    border: 2px solid white;
}
a {
    text-decoration: none;
}
.my-modal {
    display: block;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.561);
}
  
.my-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    border-radius: 10px;
 }
  
.close-my-modal {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
  
.close-my-modal:hover,
.close-my-modal:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}