body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    color: #111111;
}

.register-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f3f4f6 url('/assets/form_body.png') no-repeat center center fixed;
    background-size: cover;
}

.form-container {    
    max-width: 360px; /* limit container width on large screens */
	width: 70%;
    padding: 30px;
    border-radius: 12px;
    background-color: rgba(30, 64, 175, 0.95); /* deep blue with slight transparency */
    box-shadow: 0 0 15px rgba(0,0,0,0.6);
    text-align: center;
	box-sizing: border-box;
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #ef4444; /* brand-red heading */
    font-size: 18px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
    width: 100px;
    padding: 10px;
    background-color: #111111; /* brand-black input */
	color: #ffffff;
	border: 1px solid #10b981; /* brand-green border highlight */
	border-radius: 4px;
    margin-bottom: 14px;
   	font-size: 14px;
}

label {
    display: block;
    margin-bottom: 4px;
    color: #ffffff;
}

button {
    background-color: #ef4444; /* brand-red button */
    color: #ffffff;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 14px;
    margin-top: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #10b981; /* brand-green hover */
}

a {
    color: #ef4444; /* brand-red links */
    text-decoration: none;
    font-size: 13px;
}

a:hover {
    color: #10b981; /* brand-green hover */
}

.footer-link {
    margin-top: 15px;
    text-align: center;
}

.logo {
    text-align: center;
    margin-bottom: 55px;
}

.logo img {
    max-height: 60px;
}

.captcha-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.captcha-row input {
    flex: 1;
    padding: 10px;
    border-radius: 4px;
    background-color: #111111; /* brand-black */
    color: #ffffff;
    border: 1px solid #10b981; /* brand-green for captcha */
    font-size: 13px;
}

.captcha-row label {
    margin: 0;
    white-space: nowrap;
    font-size: 13px;
    color: #ffffff;
}

.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.checkbox-row input[type="checkbox"] {
    width: 16px;
    height: 16px;
}


/* === Placeholder alignment === */

/* Inputs and button full width and same box-sizing */
input[type="text"],
input[type="email"],
input[type="password"],
button {
    width: 100%;             /* full container width */
    box-sizing: border-box;  /* padding counted inside width */
    border-radius: 4px;
}

/* Input styling */
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #10b981;
}

/* Placeholder styling to prevent wrapping */
input::placeholder {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

button {
    vertical-align: center;
}

/* Country code select styling */
select[name="country_code"] {
	width: 100%;             /* full container width */
    box-sizing: border-box;  /* padding counted inside width */
    border-radius: 4px;
    padding: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    background-color: #111111;
    color: #ffffff;
    border: 1px solid #10b981;}

/* Placeholder for select (works for modern browsers) */
select[name="country_code"] option[disabled][selected] {
    color: #888888;         /* placeholder color */
}

