body {
    font-family: Arial, sans-serif;
    background-color: #eee;
    margin: 0;
    padding: 0;
    }
    
    .form-container {
    display: flex;
    flex-direction: column;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 400px;
    margin: 0 auto;
    margin-top: 50px;
    }
    
    h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: bold;
    font-size: 48px;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 20px;
    }
    
    input[type="text"], input[type="password"], input[type="email"] {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    border-color: rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    }
    
    button[type="submit"] {
    background-color: #00bfbf;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    }
    
    button[type="submit"]:hover {
    background-color: #71d8d8;
    }
    
    p {
    text-align: center;
    margin-top: 20px;
    }
    
    p a {
    color: #00bfbf;
    text-decoration: none;
    }

    p a:hover {
    color: #71d8d8;
    text-decoration: underline;
    }
    
    .back-button {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    width: 50px;
    height: 50px;
    position: absolute;
    left: 20px;
    top: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    }
    
    .back-button:hover {
    transform: scale(1.1);

    }
    
    .back-arrow {
    width: 20px;
    height: 20px;
    border: solid black;
    border-width: 0 3px 3px 0;
    transform: rotate(-135deg);
    }

    

.info,
.success,
.warning,
.error-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
}
.info {
  color: #059;
  background-color: #bef;
}
.success {
  color: #270;
  background-color: #dff2bf;
}
.warning {
  color: #9f6000;
  background-color: #feefb3;
}
.error {
  color: #d8000c;
  background-color: #ffbaba;
}