/* Bismillah

Blush Roze: #FFA5AB
Napels Yellow: #efde93
Verdigris: #28AFB0
Koolstof Zwart: #333333
Donker Zwart: #1C1C1C
*/

@media screen and (max-width: 768px) {
  .auth-container {
  margin: auto;
  }
}

@media screen and (min-width: 769px) {
  .auth-container {
  margin-left: 250px;
  }
}


.auth-container {
    max-width: 500px;
    padding: 20px;
    color: white;
    background-color: #333333;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.auth-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #FFA5AB;
}

.auth-tab {
    padding: 10px 20px;
    cursor: pointer;
    font-weight: 500;
    color: #FFA5AB;
}

.auth-tab.active {
    color: white;
    border-bottom: #FFA5AB;
}

.auth-form {
    display: none;
    color: white;
    background-color: #333333;
}

.auth-form.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #FFA5AB;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    margin-right: 10px;
    font-weight: 500;
    color: #FFA5AB;
}

.form-group input {
    width: 95%;
    margin-right: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
}

.auth-button {
    background-color: #28AFB0;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    width: 100%;
}

.auth-button:hover {
    background-color: #efde93;
}

.form-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.success-message {
    background-color: #d4edda;
    color: #333333;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #333333;
    border: 1px solid #f5c6cb;
}

.verification-form {
    display: none;
}

h1 {
    text-align: center;
    margin-bottom: 30px;
}


/* Blush Roze: #FFA5AB
Napels Yellow: #efde93
Verdigris: #28AFB0
Koolstof Zwart: #333333
Donker Zwart: #1C1C1C

Elhamdulillah */