/* =====================================================
   FONT DEFINITIONS
===================================================== */
@font-face {
    font-family: Heading;
    src: url(/Static/FONTS/OpenSauceOne-ExtraBold.ttf);
}

@font-face {
    font-family: Paragraph;
    src: url(/Static/FONTS/MacsansRegular-VG2YV.otf);
}

@font-face {
    font-family: Special_Text;
    src: url(/Static/FONTS/Takota-7LRl.otf);
}

/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
    /* COLORS */
    --Dark: #000000;
    --Light: #ffffff;
    --Yellow: #f9b54c;
    --Teal: #4d757f;
    --Mustard: #be7320;
    --Color_Para: #868484;

    /* ADDITIONAL COLORS (USED BELOW, NOT INVENTED) */
    --LightGray: #f4f4f4;
    --DarkGray: #1a1a1a;

    /* FONTS */
    --Heading: Heading;
    --Paragraph: Paragraph;
    --Special_Text: Special_Text;
}

/* =====================================================
   FORM LAYOUT
===================================================== */
.forms {
    display: flex;
    flex-flow: row;
    width: 100%;
    gap: 20px;
}

.right-form,
.left-form {
    flex: 1 1 50%;
    padding: 5%;
    box-sizing: border-box;
    text-align: center;
}

.right-form {
    background-color: var(--Dark);
    color: var(--Light);
    border-radius: 5px;
}

.left-form {
    background-color: var(--Light);
    color: var(--Dark);
    border-radius: 5px;
}

/* =====================================================
   FORM TEXT
===================================================== */
.form-desc {
    font-size: 2em;
    font-family: var(--Special_Text);
    margin-bottom: 1em;
    font-weight: bold;
    letter-spacing: 0.05em;
}

.form-heading {
    font-size: 2.5em;
    font-family: var(--Heading);
    font-weight: bold;
    margin: 1em 0;
}

.form-content {
    font-size: 1.3em;
    font-family: var(--Paragraph);
    margin-bottom: 0.5em;
    line-height: 1.5;
}

/* =====================================================
   FORM RESPONSIVE
===================================================== */
@media (max-width: 900px) {
    .forms {
        flex-flow: column;
    }

    .right-form,
    .left-form {
        flex: 1 1 100%;
        padding: 10%;
    }
}

@media (max-width: 540px) {
    .form-heading {
        font-size: 2em;
    }

    .form-desc {
        font-size: 1.6em;
    }

    .form-content {
        font-size: 1.1em;
    }

    .form-inputs button {
        font-size: 0.875em;
        padding: 0.5em 1em;
    }
}

/* =====================================================
   PLATFORM ICON CIRCLE
===================================================== */
.platform-box-div-center {
    display: inline-flex;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--LightGray);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.platform-box-div-center img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.platform-box-div-center:hover {
    transform: scale(1.1);
    background-color: var(--DarkGray);
}

@media (max-width: 768px) {
    .platform-box-div-center {
        width: 50px;
        height: 50px;
    }
}

/* =====================================================
   FORM BUTTON
===================================================== */
.Form_Button_1 {
    position: relative;
    outline: none;
    cursor: pointer;
    z-index: 0;
    padding: 2% 5%;
    font-family: var(--Paragraph);
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--Light);
    background: var(--Dark);
    border: 2px solid var(--Mustard);
    border-radius: 10px;
}

.Form_Button_1::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: linear-gradient(45deg, #270cf3, var(--Mustard));
    background-size: 400%;
    filter: blur(5px);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    border-radius: 10px;
    animation: glowing_1 15s linear infinite;
}

.Form_Button_1:hover::before {
    opacity: 1;
}

.Form_Button_1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--Dark);
    z-index: -1;
    border-radius: 10px;
}

.Form_Button_1:active {
    color: var(--Dark);
}

.Form_Button_1:active::after {
    background: var(--Light);
}

/* =====================================================
   BUTTON ANIMATION
===================================================== */
@keyframes glowing_1 {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* =====================================================
   BUTTON RESPONSIVE
===================================================== */
@media (max-width: 2000px),
       (max-width: 1500px),
       (max-width: 1250px),
       (max-width: 1024px) {
    .Form_Button_1 {
        font-size: 1.2em;
    }
}

@media (max-width: 1024px) {
    .Form_Button_1 {
        padding: 2% 5%;
    }
}

@media (max-width: 650px) {
    .Form_Button_1 {
        padding: 2% 5%;
    }
}
