﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f4f8;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin-top: -40px;
    display:flex;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 500px;
    height: 500px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(to right, #062470, #3a82f6); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

   



.sign-in img {
    margin-top: -20px; 
    margin-bottom: 20px;
    height: auto;
}


input {
    background-color: #f9f9f9;
    border: 1px solid #dcdde1;
    padding: 15px 20px; 
    margin: 10px 0;
    width:1000px;
    max-width: 400px;
    border-radius: 0px;
    font-size: 16px; 
    color: #2c3e50;
}

    input:focus {
        border-color: #3498db;
        outline: none;
    }

button {
    margin-top: 50px;
    border-radius: 20px;
    border: 1px solid #3498db;
    background-color: #062470;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    padding: 12px 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

    button.ghost {
        background-color: transparent;
        border: 2px solid #fff;
        color: #fff;
    }



.sign-in {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px; 
    background-color: #fff;
    border-radius: 10px;
}

/*.overlay-container {
    background: linear-gradient(to right, #062470, #ff6f61);
}

.overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #fff;
}

    .overlay h1 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .overlay p {
        margin-bottom: 20px;
    }

.overlay-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}*/


.footer {
    position: fixed;
    bottom: 0;
    background-color: #062470;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
    text-align: center;
    width:100%;
}

.footer-content h4 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
}

.footer-content p {
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

    .footer-content p span {
        display: inline-block;
        margin: 0 10px;
        bottom:0;
    }





