@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500&display=swap');

*{
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{
    display: grid;
    place-items: center;
    margin: 0;
    padding: 0 24px;
    background-color: #9b9a9c;
    background-image: radial-gradient(at 88% 0%,
      rgb(136, 134, 135) 0px,
      transparent 50%),
    radial-gradient(at 63% 46%, rgb(136, 134, 135) 0px, transparent 50%),
    radial-gradient(at 95% 53%, rgb(0, 0, 0) 0px, transparent 50%),
    radial-gradient(at 79% 83%, rgb(0, 0, 0) 0px, transparent 50%),
    radial-gradient(at 74% 93%, rgb(68, 68, 68) 0px, transparent 50%),
    radial-gradient(at 52% 13%, rgb(5, 5, 5) 0px, transparent 50%),
    radial-gradient(at 30% 80%, rgb(153, 151, 150) 0px, transparent 50%);
    color: #000;
    font-family: 'Ubuntu';
}

.login{
    position: fixed;
    z-index: 3;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    width: 90%;
    padding: 70px 30px 44px;
    border-radius: 1.25rem;
    background: #fff;
    text-align: center;
}

.login > img{
    width: 120px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
}

.login > h2{
    font-size: 36px;
    margin: 0 0 25px;
}

.login > h3{
    color: rgba(0, 0, 0, 0.38);
    margin: 0 0 6px;
    font-weight: 500;
    font-size: 1rem;
}

.login-form{
    display: grid;
    gap: 30px;
    place-items: center;
    width: 100%;
    margin: 0;
}

.login-form > input, .login-form > button{
    height: 56px;
    outline: none;
    padding: 0;
    font-family: inherit;
}

.login-form > input{
    width: 240px;
    background: transparent;
    border: 2px solid transparent;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    font-size: 18px;
    padding: 0;
    text-align: center;
    transition: all 0.3s;
}

.login-form > input:hover{
    border-bottom: 2px solid #303f9f;
}

.login-form > input:focus{
    border-bottom: 2px solid #1976d2;
}

.login-form > button{
    cursor: pointer;
    width: 100%;
    height: 56px;
    background: #303f9f;
    color: #f9f9f9;
    border: 0;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
}

.login-form > button:hover{
    background-color: #1976d2;
}

.login-form > a{
    color: #303f9f;
    font-size: 1rem;
    text-align: left;
    text-decoration: none;
    transition: all 0.3s;
}

.login-form > a:hover{
    color: #1976d2;
}

@media (width >= 450px){
    .login{
        width: 380px;
    }
}

@media (width >= 500px){
    body{
        padding: 0;
    }
}

@media (width >= 1200px){
    .login{
        width: 25%;
    }
}
/* home.css */
.home-button-container {
    position: absolute;
    top: 20px;
    left: 20px;
  }
  
  #homeButton {
    background-color: #0d47a1;
    border: none;
    color: white;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 25px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    cursor: pointer;
  }
  
  #homeButton:hover {
    background-color: #1e88e5;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 24px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
  }
  
  #homeButton:active {
    transform: translateY(1px);
  }
  
  