/* Reset Page Container */
.reset-page-container {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Guest Reset Styles (Green Theme) */
.guest-reset-container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(42, 82, 72, 0.15);
    border: 1px solid rgba(201, 229, 224, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.guest-reset-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(201, 229, 224, 0.2), rgba(42, 82, 72, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.guest-reset-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(42, 82, 72, 0.1), rgba(9, 51, 41, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.guest-reset-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.guest-reset-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C9E5E0, #3F6F63);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(201, 229, 224, 0.3);
}

.guest-reset-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D1E34;
    margin-bottom: 15px;
}

.guest-reset-subtitle {
    font-size: 1rem;
    color: #63748A;
    margin: 0;
}

.guest-reset-form {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.guest-reset-input-group {
    margin-bottom: 25px;
}

.guest-reset-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #C9E5E0;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(201, 229, 224, 0.1);
    color: #0D1E34;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.guest-reset-input:focus {
    outline: none;
    border-color: #2A5248;
    background: white;
    box-shadow: 0 0 0 3px rgba(42, 82, 72, 0.1);
}

.guest-reset-button {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2A5248, #093329);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 82, 72, 0.3);
}

.guest-reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 82, 72, 0.4);
    background: linear-gradient(135deg, #093329, #0D1E34);
}

.guest-reset-info {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #2A5248;
    line-height: 1.5;
    margin-top: 20px;
}

/* Provider Reset Styles (Blue Theme) */
.provider-reset-container {
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(46, 62, 83, 0.2);
    border: 1px solid rgba(99, 116, 138, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.provider-reset-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(99, 116, 138, 0.2), rgba(46, 62, 83, 0.1));
    border-radius: 50%;
    z-index: 1;
}

.provider-reset-container::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(46, 62, 83, 0.1), rgba(13, 30, 52, 0.05));
    border-radius: 50%;
    z-index: 1;
}

.provider-reset-header {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.provider-reset-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #63748A, #2E3E53);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(99, 116, 138, 0.3);
}

.provider-reset-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0D1E34;
    margin-bottom: 15px;
}

.provider-reset-subtitle {
    font-size: 1rem;
    color: #63748A;
    margin: 0;
}

.provider-reset-form {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.provider-reset-input-group {
    margin-bottom: 25px;
}

.provider-reset-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #63748A;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(99, 116, 138, 0.1);
    color: #0D1E34;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.provider-reset-input:focus {
    outline: none;
    border-color: #2E3E53;
    background: white;
    box-shadow: 0 0 0 3px rgba(46, 62, 83, 0.1);
}

.provider-reset-button {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #2E3E53, #0D1E34);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 62, 83, 0.3);
}

.provider-reset-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46, 62, 83, 0.4);
    background: linear-gradient(135deg, #0D1E34, #445770);
}

.provider-reset-info {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: #2E3E53;
    line-height: 1.5;
    margin-top: 20px;
}

/* Message Styles */
.reset-success-message {
    background: linear-gradient(135deg, rgba(201, 229, 224, 0.2), rgba(42, 82, 72, 0.1));
    border: 1px solid #C9E5E0;
    color: #2A5248;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.reset-error-message {
    background: linear-gradient(135deg, rgba(210, 170, 146, 0.2), rgba(126, 88, 65, 0.1));
    border: 1px solid #D2AA92;
    color: #7E5841;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.provider-reset-success-message {
    background: linear-gradient(135deg, rgba(99, 116, 138, 0.2), rgba(46, 62, 83, 0.1));
    border: 1px solid #63748A;
    color: #2E3E53;
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.message-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Back Button */
.reset-back-button {
    margin-top: 30px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #C9E5E0;
    border-radius: 10px;
    color: #2A5248;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-back-button:hover {
    background: #C9E5E0;
    color: #0D1E34;
    transform: translateY(-2px);
}

.provider-reset-back-button {
    margin-top: 30px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #63748A;
    border-radius: 10px;
    color: #2E3E53;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.provider-reset-back-button:hover {
    background: #63748A;
    color: white;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .reset-page-container {
        padding: 20px 15px;
    }
    
    .guest-reset-container,
    .provider-reset-container {
        padding: 40px 25px;
        margin: 0 15px;
    }
    
    .guest-reset-title,
    .provider-reset-title {
        font-size: 1.75rem;
    }
    
    .guest-reset-icon,
    .provider-reset-icon {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .guest-reset-container,
    .provider-reset-container {
        padding: 30px 20px;
    }
    
    .guest-reset-input,
    .provider-reset-input {
        padding: 12px 15px;
    }
    
    .guest-reset-button,
    .provider-reset-button {
        padding: 14px 25px;
    }
}
