﻿
/* =========================
NUCLEAR AUTH TEXT FIX
========================= */


div.auth-subtitle,
div.login-subtitle {
    color: #cccccc !important;

    font-size: 18px !important;

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    line-height: 1.5 !important;

    text-align: center !important;

    margin-bottom: 35px !important;

    position: relative !important;

    z-index: 9999 !important;
}
    
    .create-team-wrap {

    width: 100%;

    max-width: 520px;

    margin: 50px auto;

    padding: 30px;

    background: #111;

    border: 1px solid #222;

    border-radius: 14px;

    box-shadow:
        0 0 18px rgba(0,0,0,.45);

    box-sizing: border-box;

}

.create-team-wrap h1 {

    margin-top: 0;

    margin-bottom: 10px;

    text-align: center;

    font-size: 32px;

}

.create-team-wrap p {

    text-align: center;

    color: #bbb;

    margin-bottom: 25px;

}

.create-team-wrap label {

    display: block;

    margin-bottom: 6px;

    font-weight: bold;

}

.create-team-wrap input[type="text"],
.create-team-wrap textarea,
.create-team-wrap input[type="file"] {

    width: 100%;

    margin-bottom: 18px;

    padding: 12px;

    background: #1a1a1a;

    border: 1px solid #333;

    border-radius: 8px;

    color: #fff;

    box-sizing: border-box;

}

.create-team-wrap textarea {

    min-height: 120px;

    resize: vertical;

}

.create-team-wrap button,
.create-team-wrap input[type="submit"] {

    width: 100%;

    padding: 14px;

    background: #0a84ff;

    border: none;

    border-radius: 10px;

    color: #fff;

    font-size: 16px;

    font-weight: bold;

    cursor: pointer;

    transition: .2s ease;

}

.create-team-wrap button:hover,
.create-team-wrap input[type="submit"]:hover {

    background: #2693ff;

}

.create-team-wrap .back-link {

    display: block;

    margin-top: 20px;

    text-align: center;
  }  
    
/* =========================
REGISTER / LOGIN AUTH PAGES
========================= */

body {
    margin: 0;

    padding: 0;

    background: #000;

    font-family: Arial, sans-serif;

    color: #fff;
}

/* PAGE */

.auth-page {
    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding: 40px 20px;

    background:
        radial-gradient(circle at top,
        #111 0%,
        #000 70%);
}

/* CARD */

.auth-card {
    width: 100%;

    max-width: 520px;

    background: #0d0d0d;

    border: 1px solid #222;

    border-radius: 18px;

    padding: 42px;

    box-shadow: 0 0 35px rgba(0,0,0,.45);

    box-sizing: border-box;

    color: #fff;
}

/* TOP */

.auth-logo {
    text-align: center;

    font-size: 56px;

    margin-bottom: 18px;
}

.auth-title {
    color: #fff !important;

    font-size: 42px;

    font-weight: bold;

    text-align: center;

    margin-bottom: 10px;

    line-height: 1.2;
}

.auth-subtitle {
    color: #bbb !important;

    font-size: 18px;

    text-align: center;

    margin-bottom: 35px;

    line-height: 1.5;
}

/* FORM */

.auth-form-group {
    margin-bottom: 22px;
}

.auth-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #ccc;

    font-size: 15px;

    font-weight: bold;
}

.auth-form-group input {
    width: 100%;

    padding: 14px;

    background: #000;

    border: 1px solid #333;

    border-radius: 10px;

    color: #fff;

    font-size: 16px;

    box-sizing: border-box;

    transition: .2s ease;
}

.auth-form-group input:focus {
    outline: none;

    border-color: #00cfff;

    box-shadow: 0 0 12px rgba(0,207,255,.15);
}

/* BUTTON */

.auth-btn {
    width: 100%;

    padding: 15px;

    background: #00aaff;

    border: none;

    border-radius: 10px;

    color: #fff;

    font-size: 18px;

    font-weight: bold;

    cursor: pointer;

    transition: .2s ease;

    margin-top: 10px;
}

.auth-btn:hover {
    background: #00c3ff;
}

/* CHECKBOX */

.checkbox-row {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 24px;

    color: #bbb;

    line-height: 1.6;

    font-size: 15px;
}

.checkbox-row input[type=checkbox] {
    margin-top: 4px;

    transform: scale(1.15);
}

.checkbox-note {
    color: #888;

    font-size: 14px;
}

/* LINKS */

.checkbox-row a,
.auth-links a {
    color: #00cfff;

    text-decoration: none;

    font-weight: 600;

    transition: .2s ease;
}

.checkbox-row a:hover,
.auth-links a:hover {
    color: #66e6ff;

    text-decoration: underline;
}

/* BOTTOM LINKS */

.auth-links {
    margin-top: 28px;

    text-align: center;

    color: #ddd;

    font-size: 16px;

    line-height: 1.7;
}

.auth-links a {
    display: inline-block;

    margin-top: 8px;

    font-size: 17px;

    font-weight: bold;
}

/* ALERTS */

.error-box {
    background: #3a0000;

    border: 1px solid #ff4d4d;

    color: #fff;

    padding: 14px;

    border-radius: 10px;

    margin-bottom: 22px;

    text-align: center;
}

.success-box {
    background: #003d22;

    border: 1px solid #00d084;

    color: #fff;

    padding: 14px;

    border-radius: 10px;

    margin-bottom: 22px;

    text-align: center;
}

/* MOBILE */

@media (max-width: 700px) {

    .auth-card {
        padding: 28px;
    }

    .auth-title {
        font-size: 34px;
    }

    .auth-subtitle {
        font-size: 16px;
    }

}

    


