.container-main {
    margin: 30px auto;
    width: 60%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.logo {
    height: 50px;
    max-width: 180px;
    margin-bottom: 10px;
}

.company-name {
    color: #444444;
    font-size: 18px;
    font-weight: 500;
}

.content {
    padding: 30px;
}

h1 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333333;
    text-align: center;
}

p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #555555;
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444444;
}

input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
}

input[type="password"]:focus {
    border-color: #ff324d;
    outline: none;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

.password-requirements {
    margin-top: 8px;
    font-size: 13px;
    color: #666666;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 14px;
    background-color: #ff324d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.footer {
    padding: 20px;
    text-align: center;
    font-size: 14px;
    color: #666666;
    background-color: #f8f8f8;
    border-top: 1px solid #eeeeee;
}

.footer a {
    color: #4f46e5;
    text-decoration: none;
}

/* Password matching indicator */
.match-indicator {
    margin-top: 8px;
    font-size: 13px;
    font-weight: 500;
}

.match-indicator.matching {
    color: #10b981;
}

.match-indicator.not-matching {
    color: #ef4444;
}

/* Responsive adjustments */
@media (max-width: 500px) {
    .content {
        padding: 20px;
    }
}