/* Basic styling for the create account page */


h2 {
    margin-bottom: 20px;
    text-align: center; /* Center the heading */
}

form {
    max-width: 400px;
    margin: 0 auto; /* Center the form horizontally */
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

button {
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: center;
}


.verification-resend {
    margin-bottom: 10px;
    text-align: center;
}

.verification-resend p {
    margin: 0 0 4px;
    color: #555;
}

.verification-resend a {
    color: #007bff;
    text-decoration: none;
}

.verification-resend a:hover {
    text-decoration: underline;
}


.verification-sent {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;

    border: 1px solid #ccc;
    border-radius: 5px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    text-align: center;
}

.verification-sent-message {
    margin-bottom: 15px;
}

.verification-sent-message p {
    margin-bottom: 10px;
}

.verification-sent-expiry {
    color: #555;
}

.verification-sent-login {
    display: block;
    width: 100%;

    padding: 10px 20px;

    background-color: #007bff;
    color: #fff;

    border-radius: 3px;

    text-align: center;
    text-decoration: none;

    box-sizing: border-box;
}

.verification-sent-login:hover {
    background-color: #0069d9;
    text-decoration: none;
}