.account-auth-body {
    background-color: #121212;
    color: #ffffff;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.account-form-container {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.6);
    position: relative;
}

.account-back-button {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    text-decoration: none;
}

.account-back-button:hover {
    color: #ccc;
}

.account-form-container .form-group {
    margin-bottom: 15px;
}

.account-form-container label {
    font-weight: bold;
}

.account-form-container input {
    padding: 10px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #fff;
}

.account-form-container input::placeholder {
    color: #bbb;
}

.account-form-container input:disabled {
    background-color: #555;
    color: #ccc;
}

.account-form-container button {
    background-color: #4caf50;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.account-form-container button:hover {
    background-color: #45a049;
}

.account-form-container .form-check {
    display: flex;
    align-items: center;
}

.account-form-container .form-check-input {
    width: 20px;
    height: 20px;
}

.account-form-container .form-check-label {
    font-size: 14px;
    margin-left: 8px;
}

.account-form-container .alert {
    text-align: center;
}

.account-forgot-password {
    display: block;
    text-align: center;
    margin-top: 10px;
    color: #4caf50;
    text-decoration: none;
}

.account-forgot-password:hover {
    text-decoration: underline;
}

.account-fp-container {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    position: relative;
    text-align: center;
}

.account-fp-title {
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-weight: bold;
}

.account-fp-label {
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.6);
    color: #ffffff;
}

.account-fp-input {
    padding: 10px;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #2c2c2c;
    color: #fff;
    width: 100%;
}

.account-fp-input::placeholder {
    color: #bbb;
}

.account-fp-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
}

.account-fp-button:hover {
    background-color: #0056b3;
}

.account-success-message {
    text-align: center;
    color: #28a745;
    margin-top: 10px;
    font-weight: bold;
}

.account-error-message {
    text-align: center;
    color: #dc3545;
    margin-top: 10px;
    font-weight: bold;
}

.fp-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.fp-text {
    color: #ddd;
    font-size: 16px;
}

.fp-button {
    background-color: #007bff;
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
}

.fp-button:hover {
    background-color: #0056b3;
}
