/* Reset some default styles */
body, h1, form, input, button, h4 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #e4e8ec;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 140vh;
}

.signup {
    background: rgb(13, 5, 85);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(209, 8, 8, 0.1);
    width: 400px;
}

.signup h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: #dbd8d8;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    font-size: 14px;
    margin-bottom: 5px;
    color: #dbd8d8;
}

input[type="text"] {
    padding: 10px;
    font-size: 14px;
    border: 1px solid #644343;
    border-radius: 5px;
    margin-bottom: 20px;
}

input[type="text"]:focus {
    border-color: #007bff;
    outline: none;
}

h4 {
    font-size: 14px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #b8aeae;
}

h4 input[type="checkbox"] {
    margin-left: 10px;
}

button {
    padding: 10px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button.getotp {
    width: 200px;
    background-color: #007bff;
    color: white;
    margin-bottom: 20px;
}

button.submit {
    background-color: #28a745;
    color: white;
}

button:hover {
    opacity: 0.9;
}

.error {
    color: red;
    font-size: 12px;
    margin-top: -15px;
    margin-bottom: 10px;
}

@media (max-width: 500px) {
    .signup {
        width: 90%;
    }
}
p{
    font-size: 16px;
    color: #b8aeae;
}
