* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TD Graphik Light', 'Webly Sleek SemiLight', 'Helvetica', 'droid sans', sans-serif;
    background-color: white;
    color: #555;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.main-header {
    background-color: #1a5336;
    color: #1a5336;
    padding: 9px 15%;
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 920px;
}

.logo {
    height: 44px;
    width: auto;
}

.lock-icon {
    width: 28px;
    height: 28px;
    fill: white;
}

.reset-title {
    text-align: center;
    font-size: 30px;
    font-weight: 80;
    color: #1a5336;
    font-family: 'TD Graphik Light', 'Webly Sleek SemiLight', 'Helvetica', 'droid sans', sans-serif;
    line-height: 1.357;
    margin-top: .9em;
    margin-bottom: .3em;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.main-header h1 {
    display: none;
}

.entry-mismatch-banner {
    width: 100%;
    background: #f2e8e8;
    color: #c62828;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.24s ease, opacity 0.2s ease, padding 0.24s ease;
}

.entry-mismatch-banner.is-visible {
    max-height: 76px;
    opacity: 1;
    padding: 16px 20px;
}

.entry-mismatch-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
}

.entry-mismatch-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #c62828;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    flex: 0 0 16px;
}

.entry-mismatch-text {
    font-size: 16px;
    line-height: 1.5;
}

.main-footer {
    background-color: #1a5336;
    color: white;
    padding: 23px 15px;
    text-align: center;
    width: 100%;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-footer .footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main-footer .footer-links span {
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.main-footer .footer-links span:hover {
    text-decoration: underline;
}

.main-footer p {
    margin: 0;
    font-size: 14px;
}

.verify-section {
    max-width: 800px;
    margin: 5px auto 0;
    background: #f9f9f9;
    padding: 30px 60px;
    border-radius: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.verify-section form {
    margin: 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
    padding-top: 8px;
    margin-top: 0;
}

.content-wrapper h2 {
    text-align: center;
    font-size: 25px;
    font-weight: 300;
    color: #1a5336;
    margin-bottom: 18px;
    margin-top: 18px;
}

.description {
    text-align: center;
    color: #555;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.75;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2a2a2a;
    font-size: 17px;
    font-weight: 400;
}

.form-group input[type="text"],
.form-group input[type="password"],
.form-group input[type="tel"] {
    width: 55%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="tel"]:focus {
    outline: none;
    border-bottom: 2px solid #1a5336;
}

.input-hint {
    display: block;
    margin-top: 5px;
    font-size: 13px;
    color: #666;
}

.input-hint.error {
    color: #d32f2f;
}

.input-hint.success {
    color: #2c5530;
}

.phone-input-group {
    display: flex;
    gap: 10px;
    width: 55%;
}

.phone-input-group select {
    padding: 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 15px;
    background-color: white;
    cursor: pointer;
    min-width: 100px;
}

.phone-input-group select:focus {
    outline: none;
    border-bottom: 2px solid #1a5336;
}

.phone-input-group input[type="tel"] {
    flex: 1;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    padding: 10px 50px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    min-width: 250px;
}

.btn-cancel {
    background-color: white;
    color: #1a5336;
    border: 2px solid #1a5336;
}

.btn-cancel:hover {
    background-color: #f0f7f0;
}

.btn-submit {
    background-color: #ccc;
    color: white;
    border: 2px solid #ccc;
    cursor: not-allowed;
}

.btn-submit:not(:disabled) {
    background-color: #008a00;
    border-color: #008a00;
    cursor: pointer;
}

.btn-submit:not(:disabled):hover {
    background-color: #006600;
    border-color: #0f351a;
}
