body {
    background-color: #111;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    width: 400px;
    background-color: #222;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.header {
        padding: 0px;
        text-align: left;
        background-color: #222;
    
}

.header img {
    width: 50px;
    margin-bottom: 150px;
    max-height: 75px;
    max-width: 150px;
    margin-top: 10px;
    margin-left: 10px;
}

.header h1 {
    font-size: 24px;
    margin: 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group select {
    width: 92%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #333;
    color: #fff;
}

.btn-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}

.btn-group button {
    width: 48%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.btn-group button.use-email,
.btn-group button.use-phone {
    background-color: #444;
    color: #fff;
}
.btn-group button.verify,
.btn-group button.continue{
    background-color: #0f0;
    color: #000;
}

.terms {
    font-size: 12px;
    text-align: center;
    margin-top: 20px;
}

.terms a {
    color: #0f0;
    text-decoration: none;
}

button {
    display: block;
    margin-bottom: 50px;
  }
    button {
    padding: 10px;
    background-color: #0f0;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }

  button:hover {
    background-color: #0f0;
  }