* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", "Nunito", "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif;
}
body, button, input, select, textarea, .ast-button, .ast-custom-button {
    font-family: "Montserrat", sans-serif;
}
body {
    display: flex;
    height: 100vh;
    /* background-color: #f8f9fb; */
    font-family: "Montserrat", "Nunito", "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif;
    /* font-size: 16px; */
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}


/* Left side - Logo */
.left-side {
    flex: 1;                /* This makes it take up 50% of the screen */
    background: #F5F4F3;    /* This adds the grey background back */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the link fill the container so centering works */
.left-side a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

/* Ensure the image scales correctly */
.left-side img {
    max-width: 65%;
    height: auto;
    display: block; 
}

/* Right side - Form */
.right-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.register-box {
    width: 100%;
    max-width: 400px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.1);
}

.register-box h2 {
    margin-bottom: 20px;
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    font-family: "Montserrat", "Helvetica Neue", "Roboto", Helvetica, Arial, sans-serif;
    color: #294563;
}


.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdfe6;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: all 0.2s;
}

.form-group label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #777;
    font-size: 15px;
    pointer-events: none;
    transition: 0.2s ease all;
    background: #fff;
    padding: 0 5px;
    border-radius: 4px;
}

/* Floating effect */
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -8px;
    left: 8px;
    font-size: 12px;
    font-weight: 500;
    color: #181f31;
}

/* Focus border */
.form-group input:focus {
    border-color: #181f31;
    box-shadow: 0 0 0 3px rgba(24, 31, 49, 0.1);
}

/* Error messages */
ul.errorlist {
    color: red;
    text-align: center;
    font-size: 0.7rem;
    margin-top: 4px;
    margin-bottom: 10px;
    list-style: none;
    padding-left: 10px;
}

button {
    margin-top: 20px;
    width: 100%;
    padding: 12px;
    background: #ff5d48;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

button:hover {
    background: #ff2d11;
    /* background: #277976; */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.alt-text {
    text-align: center;
    margin-top: 15px;
    font-size: 15px;
    color: #555;
}
.alt-text a {
    color: #ff5d48;
    text-decoration: none;
    font-weight: 600;
}
.alt-text a:hover {
    text-decoration: underline;
}


/* Responsive */
@media (max-width: 768px) {
    body {
        flex-direction: column;
    }

    .left-side {
        flex: none;
        height: 200px;
    }

    .right-side {
        flex: 1;
    }

    .left-side img {
        max-width: 40%;
    }
}






/* Fullscreen Button Styling */
/* #fullscreen-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 1000; 
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 20px;
    cursor: pointer;
}

#fullscreen-btn i {
    color: #fff;
}

#fullscreen-btn:hover {
    background-color: rgba(0, 0, 0, 0.7);
} */

.icon-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 45px;
    z-index: 1000; 
    background: #319895;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 0px;
}
  
.icon-btn:hover {
    background: #267770;
}