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

body {
    font-family: 'Inter', sans-serif;
    background-color: #f7f8fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 40px 0;
}

.container {
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 1000px;
}

.logo {
    display: block;
    max-width: 150px;
    margin: 0 auto 20px;
}

h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
}

p {
    color: #6c757d;
    margin-bottom: 10px;
    text-align: center;
}

p.info {
    font-size: 14px;
    margin-bottom: 30px;
    text-align: center;
}

form {
    text-align: left;
}

.form-section {
    margin-bottom: 30px;
    border-top: 1px solid #e9ecef;
    padding-top: 30px;
}

.form-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    color: #08A88A;
}

.form-section-header i {
    font-size: 22px;
    margin-right: 15px;
}

.form-section-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
    color: #343a40;
}

.input-group {
    position: relative;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 12px 12px 12px 45px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    background-color: #f1f3f5;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
    border-color: #08A88A;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(8, 168, 138, .25);
    background-color: #fff;
}

.row {
    display: flex;
    gap: 30px;
}

.col {
    flex: 1;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-right: 10px;
    height: 20px;
    width: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.form-group-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

.form-group-checkbox a {
    color: #08A88A;
    text-decoration: underline;
}

.form-group-checkbox.select-all {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.form-group-checkbox.select-all label {
    font-weight: 600;
    color: #08A88A;
}

.btn-submit {
    width: auto;
    padding: 12px 30px;
    background-color: #E9ECEF;
    color: #495057;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color .15s ease-in-out;
    display: block;
    margin: 30px auto 0;
}

.btn-submit:hover {
    background-color: #d3d9df;
}

.btn-submit i {
    margin-right: 10px;
}

.login-link {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
}

.login-link a {
    color: #08A88A;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all .2s ease-in-out;
}

.login-link a:hover {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 3px;
    text-align: left;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.privacy-notice {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 25px;
    margin: 30px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #495057;
}

.privacy-notice h4 {
    color: #08A88A;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.privacy-notice h4 i {
    margin-right: 10px;
    font-size: 18px;
}

.privacy-notice p {
    margin-bottom: 12px;
    text-align: left;
    font-size: 13px;
}

.privacy-notice p:last-child {
    margin-bottom: 0;
}

.privacy-notice a {
    color: #08A88A;
    text-decoration: none;
    font-weight: 500;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.privacy-notice strong {
    font-weight: 600;
    color: #343a40;
}
