﻿
@font-face {
    font-family: 'VeteranTypewriter';
    src: url('../../../Fonts/VeteranTypewriter.woff') format('woff');
}
.TaskmasterImage {
    width: 50%;
    margin-top:0px;
    max-width:200px;
}
.BackgroundImage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('~/Images/TASKMASTER_WEB_BACKGROUND.png');
    background-size: cover;
    background-position: center;
    background-repeat: repeat-x;
    z-index: -1;
}

body {
    background-image: url('../Images/TASKMASTER_WEB_BACKGROUND.png');
    background-size: contain;
    background-position: center;
    background-repeat: repeat;
}

.taskmasterTitleText{
    padding-top: 5dvh;
    width: 80%;
    max-width: 500px;
}

.taskmasterSubtitleText{
    max-width: 500px;
    width: 80%;
}

    .taskmasterSubtitleText p {
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 1.5rem;
        text-wrap: pretty;
    }

.taskmasterSubtitleText p:nth-of-type(1){
    padding-top: 2dvh;
    font-size: 1rem;
    
}

.taskmasterSubtitleText p:nth-of-type(3){
    padding-top: 2dvh;
    padding-bottom: 2dvh;
}

.gregAlexThrone{
    width: 80%;
    max-width: 500px;
    height:300px;
    object-fit: cover;
    object-position: top;
}

@media screen and (max-width: 650px){
    .gregAlexThrone {
        height: 47vw;
    }
}

.mainContainer {
    min-height: 50dvh; /* Still respects iPhone nav bar issue */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    font-family: 'VeteranTypewriter';
    color: white;
}
.Controls {
    width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    background-color: #E2DACA;
    border-radius: 15px;
    padding-top: 25px;
    padding-bottom: 25px;
    filter: drop-shadow(1px 5px 4px black);
}

.Controls div{
    width: 85%;
    display: block;
}
.CheckBox {
    margin-right: 15px;
    transform: scale(1.5); /* Change 1.5 to whatever scale you want */
}
.CheckBoxlabel {
    padding-right: 5px;
    display: flex;
    align-items: center;
    line-height: 1.4;
    color: #1c355e;
    font-weight: bold;
    font-size: 12px;
}
    .CheckBoxlabel a {
        color: #1c355e;
        text-decoration: underline; /* optional, for clarity */
    }

        .CheckBoxlabel a:hover {
            color: #ff8200; /* optional hover color */
        }
.ErrorDisplay {
    display: block;
    color: red;
    font-family: 'montserrat-light';
}
.TermsConditions-error{

}
.marginTop5 {
    margin-top: 5px;
}
.marginBottom5 {
    margin-bottom: 5px;
}
.margintop50{
    margin-top:50px;
}
.Title {
    text-align: center;
}
.SubTitle {
    text-align: center;
    margin-left: 20px;
    margin-right: 20px;
}
.marginTop25 {
    margin-top: 25px;
}
.label {
    display: block;
    margin-left: 15px;
    margin-bottom: 0px;
    margin-top: 5px;
    color: #1c355e;
    font-family: 'montserrat-light';
    font-weight:bold;
}

.TextBox {
    /* Rectangle 45 */
    /*   box-sizing: border-box;
    position: absolute;
    width: 735px;
    height: 74px;
    left: calc(50% - 735px/2 + 0.5px);
    top: 1930px;*/
    background: white;
    border-radius: 37px;
    border-width: 0;
    width: 100%;
    max-width: 500px;
    border: 3px solid #1c355e;
    padding-left: 15px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: 'montserrat-light';
}
.SubmitButton {
    width: 50%;
    min-width: 200px;
    height: 40px;
    background: #1c355e;
    border-radius: 43px;
    color: white;
    font-size: 20px;
    border: none; /* Optional: removes border if not needed */
    outline: none; /* Removes default focus outline */

    display: flex; /* Centers content */
    align-items: center;
    justify-content: center;
    cursor: pointer; /* Optional: changes cursor on hover */
    font-family: 'montserrat-light';
    font-weight: bold;

}
.SubmitButton:hover {
    color: #ff8200;
}
.checkboxContainer1 {
    margin-top: 20px;
    margin-bottom: 10px;
    font-family: 'montserrat-light';
    font-size: 14px;
    display: flex;
    align-items: flex-start; /* align checkbox to top of text */
    gap: 10px; /* space between checkbox and text */
    max-width: 600px;
}
.checkboxContainer2 {
    font-family: 'montserrat-light';
    font-size: 14px;
    display: flex;
    align-items: flex-start; /* align checkbox to top of text */
    gap: 10px; /* space between checkbox and text */
    max-width: 600px;
}

.extraInfoContainer {
    color: white;
    width: 80%;
    max-width: 500px;
    display: block;
    margin: auto;
    text-align: center;
    padding-top: 3dvh;
}

.extraInfoContainer p {
    font-family: 'montserrat-light';
    margin: 0;
    font-weight: bold;
}
.extraInfoContainer a{
    color: white;
    text-decoration: underline;
}

.extraInfoContainer a:hover {
    color: #1c355e;
    
}

.copyright {
    padding-top: 3dvh;
    padding-bottom: 5dvh;
}
