:root {
    --orange: #fca311;
    --dark-blue: #14213D;
    --light-blue: #007ce0;
    --black: #000;
    --white: #fff;
    --grey: #e5e5e5;
}

#main-header {
	background: url("../../assets/images/backgrounds/header-background.png") no-repeat fixed center;
	background-size: cover;
    height: 50vh; /* Full viewport height */
    color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 15px 0;
} 

#register {
    font-family: Arial, sans-serif;
    margin: 110px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

/* .form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #0056b3;
}

.subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: #555;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

input:focus, select:focus {
    border-color: #0056b3;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.3);
}

#register button {
    background: #0056b3;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

#register button:hover {
    background: #003d80;
} */

:root {
    --dark-bg: #1c1f2e;
    --card-bg: #252a3f;
    --text-light: #e5e5e5;
    --input-bg: #2f354b;
    --input-border: #4a4f6d;
    --primary-btn: #fca311;
    --error-red: #ff4f4f;
}

.card {
    background: var(--card-bg);
    color: var(--text-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

label {
    font-weight: 600;
}

.form-control, .form-select {
    background: var(--input-bg);
    border: 1px solid var(--input-border);
    color: var(--text-light);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-btn);
    box-shadow: 0 0 5px var(--primary-btn);
}

.btn-primary {
    background: var(--primary-btn);
    border: none;
    font-weight: bold;
}

.btn-primary:hover {
    background: #ff8800;
}

.shake {
    animation: shake 0.3s ease-in-out;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    50% { transform: translateX(5px); }
    75% { transform: translateX(-5px); }
}

.valid-feedback {
    display: none;
    color: #58d68d;
}

.is-valid ~ .valid-feedback {
    display: block;
}