﻿/*================ Candidate Register =================*/

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}


/*================ Register Page =================*/

.register-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    box-sizing: border-box;
    background: linear-gradient( 135deg, #f4f8ff, #ffffff );
}


    /* Bootstrap Container */

    .register-section .container {
        width: 100%;
    }


    /* Row */

    .register-section .row {
        width: 100%;
    }


/*================ Left Panel =================*/

.register-left {
    min-height: 560px;
    padding: 50px 45px;
    border-radius: 28px;
    background: linear-gradient( 135deg, #0d6efd, #4f46e5 );
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(13,110,253,.25);
    display: flex;
    flex-direction: column;
    justify-content: center;
}


    /* Top Circle */

    .register-left::before {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
        top: -120px;
        right: -120px;
    }


    /* Bottom Circle */

    .register-left::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(255,255,255,.06);
        left: -60px;
        bottom: -60px;
    }


    /* Content Above Circles */

    .register-left > * {
        position: relative;
        z-index: 2;
    }


/* Badge */

.register-badge {
    display: inline-block;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 40px;
    background: rgba(255,255,255,.15);
    backdrop-filter: blur(8px);
    margin-bottom: 25px;
    font-weight: 600;
}


/* Heading */

.register-left h2 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}


/* Description */

.register-left p {
    color: rgba(255,255,255,.92);
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 0;
}


/* Features */

.register-left ul {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}


.register-left li {
    margin-bottom: 15px;
    font-size: 17px;
    display: flex;
    align-items: center;
}


    .register-left li i {
        color: #FFD54F;
        margin-right: 12px;
        font-size: 18px;
    }


/*================ Register Card =================*/

.register-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 15px 40px 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
    width: 100%;
}


    /* Heading */

    .register-card h2 {
        font-weight: 700;
        margin-bottom: 10px;
    }


    .register-card p {
        color: #777;
        margin-bottom: 0;
    }


    /* Labels */

    .register-card label {
        font-weight: 600;
        margin-bottom: 8px;
        color: #333;
        display: block;
    }


    /* Inputs */

    .register-card .form-control,
    .register-card .form-select {
        height: 44px;
        border-radius: 14px;
        border: 1px solid #dce3ef;
        box-shadow: none;
        transition: .3s;
        padding: 8px 14px;
    }


    /* Textarea */

    .register-card textarea.form-control {
        height: auto;
    }


    /* Focus */

    .register-card .form-control:focus,
    .register-card .form-select:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13,110,253,.10);
    }


    /* Button */

    .register-card .btn-primary {
        height: 48px;
        border-radius: 14px;
        font-size: 17px;
        font-weight: 600;
    }


    /* Links */

    .register-card a {
        color: #0d6efd;
        text-decoration: none;
        font-weight: 600;
    }


        .register-card a:hover {
            text-decoration: underline;
        }


/*================ Mobile =================*/

@media (max-width: 991px) {

    .register-section {
        min-height: 100vh;
        padding: 25px 15px;
    }

    .register-card {
        padding: 30px;
    }
}


/*================ Small Mobile =================*/

@media (max-width: 576px) {

    .register-section {
        padding: 20px 12px;
    }

    .register-card {
        padding: 25px 0px 25px 20px;
        border-radius: 22px;
    }

    .register-left h2 {
        font-size: 32px;
    }
}
