body {
    background: url("https://www.apple.com/v/mac-mini/l/images/overview/macos_bg__c6uv4hpfwiie_large_2x.jpg");
    background: url("/public/uploads/cover/2694d3cd4de9a5d738f2f97a7146d9f0.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    max-width: 100vw;
    max-height: 100vh;
    overflow-x: hidden;
    margin: 0px;
}
.ifbox{
    background: #fff;
}
.tips{
    padding: 1rem 0rem;
    text-align: center;
    color: brown;
    font-size: 1rem;
    background: #f7f7f7;
}
.resbox{
    text-align: left;
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    color: #000;
    width: 80%;
    height: auto;
    z-index: 10;
    border-radius: 1rem;
    min-height: 25rem;
    padding: 1rem;
    transform: translate(-50%,-50%);
}
.resbox h2{
    text-align: center;
}
.close{
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 1rem;
    background: #72ca9bbd;
    color: #fff;
    text-align: center;
    border-radius: 50%;
    height: 1rem;
    width: 1rem;
    line-height: 1rem;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
}
.links,.links2{
    color: #000;
}
iframe{
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100vw;
    border: none;
}
h1,p{
    color: #fff;
}
a {
  color:#1a73e8;
  text-decoration: none;
  padding:10px;
}
h3{
    margin: 0px;
}

a:hover {
  color:#1354a9;
  background-color:#1a73e826;
}
.index{
    height: 100vh;
    /*width: 100vw;*/
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-form {
  padding:40px 40px 60px 20px;
  text-align:center;
  border:10px;  
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.login-form:hover {
  transition: 0.8s;
  box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.input-container {
  width: 300px;
  position: relative;
  margin:30px;
}

.label {
    position: absolute;
    left: 10px;
    top: 14px;
    transition: all 0.3s;
    padding: 0 2px;
    z-index: 1;
    color: #5f6368;
    pointer-events: none;
}

.text-input {
    padding: 1rem;
    width: 100%;
    height: 100%;
    border: 0.5px solid #b3b3b3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 500;
    outline: none;
    transition: all 0.3s;
    color: black;
}

.label::before {
    content: "";
    height: 5px;
    background: transparant;
    position: absolute;
    left: 0px;
    top: 10px;
    width: 100%;
    z-index: -1;
}

.text-input:focus {
    border: 2px solid #1a73e8;
}

.text-input:focus + .label,
.filled {
    top: -1.35rem;
    color: #fff;
    font-size: 14px;
}

.side1 {
  float:left;
  display:inline;
}

.side2 {
  float:right;
}

.submit-button {
  padding:8px 18px;
  font-size:17px;
  color:white;
  background-color:#1a73e8;
  border:none;
  border-radius:15%;
  margin-right: -35px;
}

.submit-button:hover {
  background-color:#1354a9;
}