.password .container-password {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 550px;
    overflow: hidden;
}

.password .header {
    background: linear-gradient(135deg, #409B44 0%, #216726 100%);
    color: white;
    padding: 5px;
    text-align: center;
}

.password .header h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.password .header p {
    font-size: 14px;
    opacity: 0.9;
    color: #fff;
    margin-bottom: 5px;
}

.password .form-container {
    padding: 30px;
}

.password .input-group {
    margin-bottom: 5px;
    position: relative;
}

.password .input-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.password .input-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.password .input-group input:focus {
    outline: none;
    border-color: #4b6cb7;
    box-shadow: 0 0 0 3px rgba(75, 108, 183, 0.2);
}

.password .toggle-password {
    position: absolute;
    right: 15px;
    top: 40px;
    color: #777;
    cursor: pointer;
}

.password .password-strength {
    height: 5px;
    margin-top: 8px;
    border-radius: 5px;
    background-color: #eee;
    overflow: hidden;
}

.password .strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease;
}

.password .password-requirements {
    margin-top: 5px;
    font-size: 12px;
    color: #666;
}

.password .requirement {
    margin-bottom: 3px;
    display: flex;
    align-items: center;
}

.password .requirement i {
    margin-right: 5px;
    font-size: 10px;
}

.password .requirement.met {
    color: #4CAF50;
}

.password .btn {
    background: linear-gradient(135deg, #409B44 0%, #216726 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.password .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.password .btn:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .password .container {
        border-radius: 0;
    }

    .password .form-container {
        padding: 20px;
    }
}