* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
}

body {
    background-image: url('../images/BGG1-Photoroom.jpg');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
}

.auth-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}

.auth-tab {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.auth-tab:hover {
    background-color: #f9f9f9;
}

.auth-tab.active {
    border-bottom: 3px solid #4CAF50;
    color: #4CAF50;
}

.auth-forms {
    padding: 20px;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
}

h2 {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-size: 24px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #555;
    font-size: 14px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

input:focus, textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

.phone-input-container {
    display: flex;
    align-items: center;
}

.country-code {
    padding: 12px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #555;
}

.phone-input-container input {
    border-radius: 0 4px 4px 0;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    width: 100%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #ffffff;
}

button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.otp-inputs input {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    margin: 0 5px;
}

.timer-container {
    text-align: center;
    margin: 15px 0;
    color: #666;
}

#login-resend-otp, #signup-resend-otp {
    background-color: transparent;
    border: 1px solid #4CAF50;
    color: #4CAF50;
    margin-top: 10px;
}

#login-resend-otp:hover, #signup-resend-otp:hover {
    background-color: #f0f8f0;
}

#login-resend-otp:disabled, #signup-resend-otp:disabled {
    border-color: #cccccc;
    color: #cccccc;
    background-color: transparent;
}