/* Custom Input Component Styles */
.custom-input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.custom-input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    background: #1a1a1a;
    border: 0px;
    border-radius: 15px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.custom-input:focus {
    outline: none;
    border: 0px !important;
    background: rgba(255, 255, 255, 0.08);
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.custom-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 300;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0 5px;
}

.custom-input:focus + .custom-label,
.custom-input:not(:placeholder-shown) + .custom-label {
    top: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.8);
    padding: 2px 8px;
    border-radius: 4px;
}

.input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    pointer-events: none;
}

.input-icon .icon {
    width: 20px;
    height: 20px;
    display: inline-block;
}

/* Social Login Buttons */
.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px;
    border-radius: 20px;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}
.social-btn svg{
    margin-right: 20px;
}

.social-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
}

.social-btn img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

/* Create Account Button */
.create-account-btn {
    width: 100%;
    padding: 15px;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 20px;
}

.create-account-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Tab Buttons */
.tab-buttons {
    display: flex;
    /* background: rgba(255, 255, 255, 0.05); */
    background: #1a1a1a;
    border-radius: 20px;
    padding: 4px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    max-width: 350px;
    margin: 20px auto;
    justify-content: space-between;
}

.tab-btn {
    flex: 1;
    padding: 10px 10px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 150px;
    font-size: 20px;
}

.tab-btn.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.tab-btn:hover {
    color: #ffffff;
}

/* Checkbox Styles */
.custom-checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.custom-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 10px;
    accent-color: #ffffff;
}

.custom-checkbox a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.custom-checkbox a:hover {
    color: #ffffff;
}

.custom-input::placeholder {
    color: #5a5a5a;
    font-weight: bold;
    font-family: "Exo 2", sans-serif;
}

/* Error Styles */
.custom-input.error {
    border: 2px solid #ff4444 !important;
    background: rgba(255, 68, 68, 0.1) !important;
}

.error-message {
    display: none;
    color: #ff4444;
    font-size: 13px;
    margin-top: 5px;
    padding-left: 5px;
    font-weight: 500;
}

/* Success Message Styles */
#successMessage {
    background: rgba(40, 167, 69, 0.15) !important;
    border: 2px solid #28a745 !important;
    color: #28a745 !important;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 15px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-out;
}

#successMessage i {
    font-size: 18px;
}

/* General Error Message Styles */
#generalErrorMessage {
    background: rgba(220, 53, 69, 0.15) !important;
    border: 2px solid #dc3545 !important;
    color: #dc3545 !important;
    border-radius: 12px;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 15px;
    backdrop-filter: blur(10px);
    animation: slideDown 0.3s ease-out;
}

#generalErrorMessage i {
    font-size: 18px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}