@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');

:root {
    --brand-blue: #1f77a6;
    --brand-blue-dark: #175d82;
    --brand-terracotta: #bb4a2c;
    --text-dark: #23262b;
    --bg-page: #f3f5f7;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: var(--bg-page);
    color: var(--text-dark);
}

.loginLogo {
    width: 100%;
    max-width: 280px;
    height: auto;
    margin-bottom: 20px;
}

.brand-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.brand-logo {
    height: 140px;
    width: auto;
}

.container {
    margin: 0 15px;
}

.form-box {
    width: 100%;
    max-width: 350px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.form-box.active {
    display: block;
}

h2 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 20px;
}

input {
    width: 100%;
    padding: 12px;
    background: #eee;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
    color: black;
    margin-bottom: 20px;
}

button {
    width: 100%;
    padding:12px;
    background: var(--brand-blue);
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    transition: 0.2s;
}

button:hover{
    background: var(--brand-blue-dark);
}

p {
    font-size: 14.5px;
    text-align: center;
    margin-bottom: 10px;
}

p a {
    font-size: 14.5px;
    color: #0081c6;
    text-decoration: none;
}

select {
    width: 100%;
    padding: 12px;
    background: #eee;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 16px;
    color: gray;
    margin-bottom: 20px;
}

.error-message {
    padding: 12px;
    background: #fbe9e5;
    border-radius: 6px;
    font-size: 16px;
    color: var(--brand-terracotta);
    text-align: center;
    margin-bottom: 20px;
}

h1{
    font-size: 50px;
}

span {
    color: var(--brand-blue);
}

.box p {
    font-size: 22px;
}

.box button {
    display: block;
    width: 300px;
    margin: 0 auto;
}

.teamChoice {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.teamChoiceOption {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #eee;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.teamChoiceOption input[type="radio"] {
    width: auto;
    margin: 0;
    accent-color: var(--brand-blue);
}

