/* New Password Page Styles */
/* Footer and navigation styles are NOT included here */

body {
    font-family: 'Raleway', sans-serif;
    background-color: #F8F8F8;
}

/* New Password Container */
.newpassword-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* New Password Card */
.newpassword-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Page Title */
.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 40px;
    line-height: 1.2;
}

/* Form Styling */
.newpassword-form {
    width: 100%;
}

/* Form Group */
.form-group {
    margin-bottom: 28px;
    text-align: left;
}

/* Form Label */
.form-label {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 8px;
}

/* Password Input Wrapper */
.password-input-wrapper {
    position: relative;
    width: 100%;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    background-color: #ffffff;
    border: 1.5px solid #333333;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.form-input::placeholder {
    color: #999999;
}

.form-input:focus {
    border-color: #E8175D;
    box-shadow: 0 0 0 3px rgba(232, 23, 93, 0.1);
}

/* Toggle Password Button */
.toggle-password {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.toggle-password:hover {
    opacity: 0.7;
}

.toggle-password svg {
    width: 24px;
    height: 24px;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    max-width: 300px;
    background: #f3687f;
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 32px auto 24px;
    display: block;
    box-shadow: 0 4px 8px rgba(232, 23, 93, 0.25);
    text-decoration: none;
}

.btn-submit:hover {
    background: #D01550;
    color: #ffffff !important;
    box-shadow: 0 6px 12px rgba(232, 23, 93, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(232, 23, 93, 0.25);
}

.btn-submit:focus {
    color: #ffffff !important;
    text-decoration: none;
    outline: none;
}

/* Signup Text */
.signup-text {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 0;
}

.signup-link {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: #2E5C99;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .newpassword-container {
        padding: 40px 15px;
    }
    
    .newpassword-card {
        padding: 40px 30px;
    }
    
    .page-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .form-label {
        font-size: 14px;
    }
    
    .form-input {
        padding: 13px 48px 13px 18px;
        font-size: 14px;
    }
    
    .toggle-password {
        right: 16px;
    }
    
    .toggle-password svg {
        width: 22px;
        height: 22px;
    }
    
    .btn-submit {
        font-size: 17px;
        padding: 14px 35px;
        margin-top: 28px;
    }
}

@media (max-width: 576px) {
    .newpassword-container {
        padding: 30px 12px;
        min-height: auto;
    }
    
    .newpassword-card {
        padding: 35px 24px;
        border-radius: 10px;
    }
    
    .page-title {
        font-size: 26px;
        margin-bottom: 28px;
    }
    
    .form-group {
        margin-bottom: 24px;
    }
    
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .form-input {
        padding: 12px 45px 12px 16px;
        font-size: 14px;
        border-width: 1.5px;
    }
    
    .toggle-password {
        right: 14px;
    }
    
    .toggle-password svg {
        width: 20px;
        height: 20px;
    }
    
    .btn-submit {
        font-size: 16px;
        padding: 13px 30px;
        max-width: 100%;
        margin-top: 24px;
    }
    
    .signup-text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    .newpassword-card {
        padding: 30px 20px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-input {
        padding: 11px 42px 11px 14px;
        font-size: 13px;
    }
    
    .toggle-password {
        right: 12px;
    }
    
    .toggle-password svg {
        width: 18px;
        height: 18px;
    }
}
