@import url('https://fonts.googleapis.com/css2?family=Martel&display=swap');
/* Login */
.main-content{
    background: #FFFFFF;
    background-size: 100% 100%;
    height: 100%;
    width: 90%;
    display: grid;
    place-items: center;
    overflow-x: hidden;
    margin: 0 auto;
    margin-top: 0;
    min-height: 78.7vh;
}
.top-part
{
    padding-left: 20px;
    padding-bottom: 20px;
    font-family: "Martel", serif;
}
.top-part img{
    height: 420px;
    width: 360px;
    max-height: 460px;
    max-width: 410px;
}
.top-part ul li{
    display: flex;
    padding: 5px 0;
    font-size: 20px;
    font-style: italic;
}
.top-part ul li img{
    height: 17px;
    width: 17px;
    margin: 5px;
}
.login-section .link{
    margin-top: 30px;
    display: flex;
    justify-content: center;
}
.login-section .link a{
    color: #111;
    display: block;
    font-size: 22px;
    margin-bottom: 5px;
    margin-top: 5px;
    font-weight: 500;
    font-style: italic;
    padding: 10px 30px;
    margin-bottom: 0px;
    font-family: "Martel", serif;
}
.login-section .link a:hover{
    text-decoration: none;
    color: #eeca76;
    transition: all .5s;
}
.mid-part{
    margin-top: 0px;
    text-align: center;
}
.mid-part img{
    width: 100%;
    height: 100%;
    max-width: 500px;
    max-height: 440px;
}
.form-section{
    height: 100%;
    place-items: center;
}
#login-form {
    width: 300px;
    background-color: #8a8583;
    border: none;
    padding: 30px 25px;
    border-radius: 5%;
    margin: 0 auto;
    text-align: center;
}
#login-form h3{
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
}
#login-form label{
    font-weight: 500;
}
#login-form input[type=text]{
    margin-top: 15px;
    margin-bottom: 20px;
    background-color: #fff;
}
#login-form input[type=text],
#login-form input[type=password] {
    background-color: #A59E9A;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 20px;
}
#login-form .input-field{
    width: 100%;
    position: relative;
}
#login-form .input-field i{
    position: absolute;
    padding: 10px;
    color: #fff;
    padding-top: 12px;
    padding-left: 13px;
    font-size: 20px;
    left: 0;
}
#login-form .input-field input{
    padding-left: 40px;
    color: #fff;
    left: 0;
}
::placeholder {
    color: #f4f2f2 !important;
  }
::-ms-input-placeholder {
    color: #f4f2f2;
}
input:-internal-autofill-selected {
    background-color: transparent !important;
    background-image: none !important;

}
#login-form input[type=text]:focus,
#login-form input[type=text]:active,
#login-form input[type=password]:focus,
#login-form input[type=password]:active {
    border: none;
    box-shadow: none;
}
.button-section{
    text-align: center;
    margin-top: 35px;
    margin-bottom: 20px;
}
.button-part .login-btn
{
    display: block;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 8px 20px;
    font-weight: 500;
    color: #111;
    background: #f7efd2;
    border-radius: 20px;
    margin-top: 20px;
    text-transform: uppercase;
    border-radius: 20px;
    border: 2px solid #eed7a1;
}
.button-part .login-btn:hover
{
    background: #eeca76;
    color: #111;
    transition: ease-in .3s;
}
.form-section .register-part{
    margin-bottom: 20px;
    margin-top: 30px;
    text-align: center;
}
.form-section .register-part p{
    margin-bottom: 10px;
    margin-top: 30px;
    text-align: center;
    color: #fff;
    font-size: 17px;
}
.form-section .register-part a{
    background: #f7efd2;
    padding: 7px 20px;
    border-radius: 20px;
    text-decoration: none;
    color: #111;
    display: block;
    width: 100%;
    margin: 10px auto;
    text-align: center;
    border: 2px solid #eed7a1;
    font-weight: 500;
    text-transform: uppercase;
}
.form-section .register-part a:hover{
    background-color: #eeca76;
    transition: ease-in .5s;
}
.form-section .forgot-part{
    margin-top: 20px;
    text-align: center;
}
.form-section .forgot-part a{
    color: #fff;
    text-decoration: underline;
    font-size: 18px;
}
.form-section .forgot-part a:hover{
    color: #eeca76;
    transition: ease-out .5s;
    text-decoration: none;
    font-size: 18px;
}
.social-media
{
    margin-left: 0px;
}


/* Ticker */
/* Style 2 */
.stock-list {
    font-size: 15px;
    padding-block: 8px;
    border-block: 1px solid;
    overflow: hidden;
    user-select: none;
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .stock-list ul {
    list-style: none;
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    animation: scroll 25s linear infinite;
    margin-bottom: 0px;
  }
  
  .stock-list:hover ul {
    animation-play-state: paused;
  }
  
  @keyframes scroll {
    to {
      transform: translateX(calc(-100% - 20px));
    }
  }
  
  /* .stock-list ul:first-child {
      background-color: yellow;
    }
    
    .stock-list ul:last-child {
      background-color: pink;
    } */
  
  .stock-list .company,
  .stock-list .price {
    font-weight: bold;
  }
  
  .stock-list .price {
    margin-inline: 4px;
  }
  .stock-list img{
    height: 18px;
    width: 13px;
    margin-right: 2px;
    margin-bottom: 5px;
  }
  
  /* .stock-list .plus::before {
    content: "↑";
  }
  
  .stock-list .minus::before {
    content: "↓";
  } */
  
  .stock-list .plus .change,
  .stock-list .plus::before {
    color: #089981;
  }
  
  .stock-list .minus .change,
  .stock-list .minus::before {
    color: #f23645;
  }

/* Media Query */
@media only screen and (max-width: 1400px) {
    .top-part
    {
        padding-left: 0;
    }
    .top-part img
    {
        height: 400px;
        width: 300px;
    }
    #login-form
    {
        width: 280px;
    }
}
@media only screen and (max-width: 1199px) {
    .main-content{
        display: block;
    }
    .top-part,
    .mid-part
    {
        margin-top: 80px;
        margin-bottom: 40px;
    }
    #login-form
    {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .top-part img
    {
        height: 100%;
        width: 100%;
    }
}
@media only screen and (max-width: 991px) {
    .main-content{
        min-height: 90vh;
    }
    .login-section .link{
        margin-bottom: 30px;
        margin-top: 0px;
    }
}
@media only screen and (max-height: 750px) {
    .login-section .link{
        margin-top: 30px;
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .top-part,
    .mid-part
    {
        margin-top: 20px;
        margin-bottom: 0px;
    }
    #login-form
    {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .login-section .link{
        margin-top: 0px;
    }
    .login-section .link a{
        font-size: 19px;
        padding: 5px 10px;
    }
    .navbar-brand h5{
        font-size: 1.1rem;
    }

}