﻿/*--------------------
Global Styles
--------------------*/
body {
    background-color: #102590;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-sizing: border-box;
    padding-right: initial;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    overflow: hidden; 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600; 
    color: #fff; 
}

/*--------------------
Login Container
--------------------*/
.login-container {
    display: flex;
    width: 100%; 
    height: 100vh;
    margin: 0; 
    padding: 0;
    box-sizing: border-box; 
}
    .login-container > .col-md-6 {
        padding-right: initial;
        padding-left: 0 !important;
    }


/*--------------------
Login Left Section
--------------------*/
.login-left {
    background-color: #102590;
    color: #fff;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
}
    .login-left h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: white;
    }

    .login-left .social-links {
        margin-top: 20px;
    }

        .login-left .social-links h4 {
            margin-bottom: 10px;
            color: #fff;
        }

/*--------------------
Social Buttons
--------------------*/
.social-links {
    display: flex;
    justify-content: center; 
    gap: 10px; 
    flex-wrap: wrap; 
    margin-top: 20px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: 5px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    width: auto; 
    height: 50px; 
    box-sizing: border-box;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

    .social-btn .icon {
        margin-right: 8px;
        font-size: 1.2rem;
    }

    .social-btn.facebook {
        background: linear-gradient(to right, #0583F2, #0798F2, #0FB2F2);
    }

    .social-btn.instagram {
        background: linear-gradient(to right, #F2295F, #F22E8A, #D636D9, #9435F2, #F23D3D);
    }

    .social-btn.website {
        background: linear-gradient(to right, #11308C, #38D0F2, #F2A341);
    }

    .social-btn.linkedin {
        background: linear-gradient(to right, #0487D9, #048ABF, #0378A6, #04B2D9);
    }

/*--------------------
Login Right Section
--------------------*/
.login-right {
    background-color: #fff;
    flex: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

/*--------------------
Content Container
--------------------*/
.content-container {
    text-align: center;
    max-width: 90%; 
}

.phrase {
    font-size: 2.5rem; 
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.demo-image {
    width: 100%;
    max-width: 900px; 
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*--------------------
Form Controls
--------------------*/
.form-control {
    border-radius: 30px;
    margin-bottom: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #333;
}

.btn-success {
    border-radius: 30px;
    width: 100%;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    background: #28a745;
    border: none;
    transition: background 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

    .btn-success:hover {
        background: linear-gradient(to right, #00b09b, #96c93d);
    }

.gradient-btn {
    background: linear-gradient(to right,#38D0F2, #6872A6, #38D0F2, #6872A6);
    border: none;
    color: black;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

/*--------------------
Footer
--------------------*/
footer {
    margin-top: 20px;
    text-align: center;
    font-size: 0.7rem;
    color: white;
    position: fixed;
    bottom: 0;
}