/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

:root {
    --primary-color: #FFD700;
    --text-color: #444;
    --title-color: #000;
    --error-color: #FF4444;
    --link-color: #2F74FF;
    --background-color: #FFFFFF;
    --input-border: #d6d6d6;
    --border-color: #d6d6d6;
    --button-hover: #ffc700;
    --yellow: #ffc700;
    --green: #13C56B;
    --red: #FF4444;
}

body {
    background-color: #f9f9f9;
    color: #000;
    line-height: 1.6;
}

h1{
    font-size: 30px;
    font-weight: 600;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

a {
    text-decoration: none;
}

.show {
    display: block;
}

.hide {
    display: none;
}

.alert.alert-warning{
    padding: 10px;
    border-radius: 5px;
    background-color: #fff3cd;
    color: #664d03;
    border: 1px solid #ffeeba;
    margin-bottom: 10px;
}

/* Common Form Styles */
.auth-container {
    max-width: 480px;
    margin: 0 auto;
    padding: 50px 30px;
    background: white;
    border-radius: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

form {
    width: 100%;
}

.logo-container {
    text-align: center;
    margin-bottom: 10px;
}

.logo {
    width: 110px;
    height: auto;
}

.form-title {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: normal;
    color: #000;
    line-height: 32px;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #000;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.form-input {
    width: 100%;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #d6d6d6;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    color: #000;
}

.form-input:focus {
    outline: none;
    border-color: #000;
}

.btn {
    width: 100%;
    padding: 0 15px;
    border: none;
    height: 44px;
    border-radius: 8px;
    font-size: 15px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
    font-family: 'Poppins', sans-serif;
}

.btn-icon{
    width: 34px;
    padding: 0;
    border: none;
    height: 34px;
    border-radius: 8px; 
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #ffc700;
}

.form-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.form-footer a {
    color: var(--link-color);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.error-message {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 480px) {
    .auth-container {
        padding: 50px 30px;
    }
} 

/* Global Modal */
.global-modal .modal-header{
  align-items: flex-start;
  border: none;
}

.global-modal .modal-body{
    padding: 0px 30px 50px;
}

.global-modal .video-container{
    margin-bottom: 20px;
}

.global-modal .modal-body ol{
    padding-left: 20px;
    margin-top: 0px;
}

.global-modal .close-button{
    top: 15px;
    right: 10px;
}

/* Pop Up Message */
