/* Page Font */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono&display=swap');

body {
    background-color: #eeeeee; /* Light grey background */
    color: #000000; /* Black text for better contrast */
    font-family: "ubuntu-mono", monospace; /* Custom font as specified */
}

/* Logo Styling */
.registration-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.logo-container {
    margin-bottom: 10px;
}

.registration-logo {
    max-width: 135px; /* Reduced by 25% (previously 180px) */
}

/* Registration Form Wrapper Styling */
.registration-form-wrapper {
    background-color: #ffffff; /* White background for the registration form */
    padding: 15px; /* Reduced padding for a more compact look */
    border-radius: 8px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #000; /* Black text for contrast within the white box */
}

.registration-form-wrapper h2 {
    font-size: 1.3rem; /* Reduced font size for a more compact look */
    color: #000;
    font-family: "ubuntu-mono", monospace;
}

input[type="text"],
input[type="email"],
input[type="password"],
select,
input[type="submit"] {
    width: 100%;
    font-size: 0.9rem; /* Reduced font size */
    padding: 8px; /* Reduced padding for compact appearance */
    box-sizing: border-box;
    border-radius: 4px;
}

input[type="text"],
input[type="email"],
input[type="password"],
select {
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    color: #000;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 4px #0073aa;
}

input[type="submit"] {
    background: #0073aa; /* WP blue */
    border: none;
    color: #ffffff;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
}

input[type="submit"]:hover {
    background: #005a8c;
}

/* Register link styling */
a {
    color: #0073aa;
    text-decoration: none;
}

a:hover {
    color: #005a8c;
}

/* Back link styling */
.back-link {
    color: #333;
    font-size: 0.9rem;
}

.back-link:hover {
    color: #666;
}

@media (max-width: 768px) {
    .registration-content-wrapper {
        margin: 100 40px;
    }
}