.header {
    background: url(../images/head/bg-header-registration.jpg) no-repeat top center;
    height: 399px;
}
.header .breads, .header .breads a {
    color: #000;
    font-size: 20px;
}
.section {
    background-color: #1a1a1a;
    min-height: 1000px;
    font-size: 16px;
    height: auto;
}
input[type="text"],
input[type="email"],
input[type="password"] {
    padding: 12px;
    border: 1px solid #444;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-size: 16px;
    background-color: #2a2a2a;
    color: #f0f0f0;
    transition: border-color 0.3s, background-color 0.3s, color 0.3s;
}
input:focus {
    border-color: #007bff;
    background-color: #ffffff;
    color: #000;
}
.requirements {
    color: #70eaff;
    font-size: 14px;
    padding: 5px;
}
.error {
    color: #ff4c4c;
    font-size: 14px;
}
.error-global {
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.1em;
	line-height: 2em;
    text-align: center;
    transition: opacity 0.3s ease;
}
.error-sucess {
    background-color: #1dd30e;
    color: #121212;
    border-radius: 5px;
    margin-bottom: 20px;
    font-size: 1.1em;
	line-height: 2em;
    text-align: center;
    transition: opacity 0.3s ease;
}
.forgot-wrap {
    width: 100%;
    padding-top: 50px;
    color: #e0e0e0;
}
.forgot-layout {
    max-width: 1000px;
    padding: 40px;
    background-color: #1e1e1e;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    color: #f0f0f0;
	margin: auto;
}
.forgot-title {
    margin-bottom: 40px;
    font-size: 32px;
    font-family: inherit;
    letter-spacing: 1px;
}
.forgot-form {
    display: flex;
    flex-direction: column;
}
.form-group {
    margin-bottom: 20px;
    text-align: left;
}
.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #e2e2e2;
    text-align: right;
}
.btn-forgot {
    background-color: #007bff;
    color: #ffffff;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.3s, transform 0.2s;
}
.btn-forgot:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}
ul.links {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
    font-size: 20px;
    color: #b0b0b0;
}
ul.links li {
    margin: 0 5px;
}
ul.links li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s;
}
ul.links li a:hover {
    text-decoration: underline;
    color: #0056b3;
}
@media (max-width: 600px) {
    .forgot-wrap {
        padding: 15px;
    }
    .forgot-title {
        font-size: 28px;
    }
    .btn-forgot {
        font-size: 18px;
    }
}