/* global courses style */

:root {
	--primary-courses: #E30069;
    --primary-courses-hover: #C7005E;
	--primary-courses-light: #FFD6E0;
    --courses-background: #f8f9fa;
    --container-background: #ffffff;
}


body {
    background: var(--courses-background);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
	background: #f5f5f5;
    margin: 0;
    padding: 0;
}

.form-box {
    max-width: 500px;
    width: 250px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
}

.centered-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.c-container {
    max-width: 1200px;
    width: 100%;
    min-height: 80vh;
    margin: 40px auto 0 auto;
    background: var(--container-background);
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 28px 28px 28px;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}
h1 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
    color: #222;
}



section {
    width: 100%;
}

input {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #444;
    border-radius: 0.4rem;
    color: #131313;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #333;
}

small {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
}

.btn {
    display: inline-block;
    background: var(--primary-courses, #E30069);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.15s;
    margin: 0 auto;
    text-align: center;
    border: none;
}
.btn:hover {
    background: var(--primary-courses-hover, #C7005E);
}

.form-group {
    text-align: left;
    margin: 0.5rem 0;
}