*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Times New Roman', Times, serif;
}

.register-page{
    width: 100%;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    background:
    linear-gradient(to top, rgba(0,0,0,0.7)50%, rgba(0,0,0,0.7)50%),
    url(forexbackground.jpeg);

    background-position: center;
    background-size: cover;
}

.register-box{
    width: 420px;

    background: rgba(0,0,0,0.85);

    padding: 40px;

    border-radius: 15px;

    text-align: center;
}

.register-box h1{
    color: orange;
    margin-bottom: 20px;
}

.register-box p{
    color: white;
    line-height: 28px;
}

.buttons{
    margin-top: 35px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.buttons a{
    text-decoration: none;

    padding: 15px;

    border-radius: 8px;

    font-size: 18px;
    font-weight: bold;

    transition: 0.3s;
}

.trader-btn{
    background: orange;
    color: black;
}

.trader-btn:hover{
    background: white;
    color: orange;
}

.investor-btn{
    background: white;
    color: orange;
}

.investor-btn:hover{
    background: orange;
    color: white;
}

.back-btn{
    display: inline-block;

    margin-top: 30px;

    color: white;
    text-decoration: none;
}

/* FOREX COURSE BUTTON */

.course-btn{
    background: orange;
    color: black;
}

.course-btn:hover{
    background: white;
    color: orange;
}

.terms-container{
    margin:25px 0;
}

.terms-label{
    display:flex;
    align-items:flex-start;
    gap:15px;

    padding:18px 20px;

    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,215,0,.15);

    border-radius:12px;

    cursor:pointer;

    transition:.35s ease;
}

.terms-label:hover{
    border-color:#d4af37;
    background:rgba(212,175,55,.06);
    box-shadow:0 0 20px rgba(212,175,55,.12);
}

/* Hide Native Checkbox */

.terms-label input{
    display:none;
}

/* Custom Checkbox */

.custom-check{

    width:22px;
    height:22px;

    border:2px solid #6b7280;

    border-radius:6px;

    flex-shrink:0;

    position:relative;

    transition:.3s;

    margin-top:2px;
}

/* Checked */

.terms-label input:checked + .custom-check{

    background:#d4af37;
    border-color:#d4af37;

}

/* Tick */

.terms-label input:checked + .custom-check::after{

    content:"✓";

    position:absolute;

    color:#111;

    font-weight:bold;

    font-size:14px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);
}

/* Text */

.terms-text{

    color:#cfcfcf;

    font-size:14px;

    line-height:1.8;
}

/* Links */

.terms-text a{

    color:#d4af37;

    text-decoration:none;

    font-weight:600;

    transition:.3s;
}

.terms-text a:hover{

    color:#ffd95b;

    text-decoration:underline;
}

/* Focus */

.terms-label input:focus + .custom-check{

    box-shadow:0 0 0 4px rgba(212,175,55,.25);
}

/* Responsive */

@media(max-width:768px){

    .terms-label{

        padding:15px;

        gap:12px;
    }

    .terms-text{

        font-size:13px;

        line-height:1.7;
    }

}