body {
   font-family: Arial, sans-serif;
   background-color: #f9f9f9;
   display: flex;
   justify-content: center;
   align-items: center;
   height: 100vh;
   margin: 0;
}
h2{
    font-weight:700;
}
.logo img {
   width: 50px;
   margin-bottom: 20px;
   text-align:center;
}
.container {
   background-color: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
   max-width: 400px;
   width: 100%;
}

.signup-form h2 {
   margin-bottom: 50px;
   text-align: center;
   font-size: 24px;
   color: #333;
}

.form-group {
   margin-bottom: 15px;
}

.form-group label {
   display: block;
   margin-bottom: 5px;
   font-size: 14px;
   color: #555;
}

.form-group input {
   width: 90%;
   padding: 10px;
   border: 1px solid #ddd;
   border-radius: 5px;
   font-size: 14px;
   color: #333;
}

.form-group input:focus {
   border-color: #00c6d7;
   outline: none; 
}

.form-group input[type="checkbox"] {
   width: auto;
   margin-right: 10px;
}

button {
   width: 100%;
   padding: 10px;
   background: radial-gradient(60.63% 60.63% at 57.15% 51.07%, #09acbe 0%, #37474f 100%);
   border: none;
   border-radius: 8px;
   color: white;
   font-size: 14px;
   font-weight:700;
   cursor: pointer;
}
.information{
    font-size:12px;
}

button:hover {
   background-color: #00a5b5;
}

p {
   text-align: center;
   font-size: 14px;
   color: #333;
}

p a {
   color: #00c6d7;
   text-decoration: none;
}

p a:hover {
   text-decoration: underline;
}
@media only screen and (max-width: 600px) {
   .container{
      width: 80%;
   }
}
