﻿
url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: 0.5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: #333;
    font-size: 14px;
    text-decoration: none;
    margin: 15px 0;
}

button {
    border-radius: 20px;
    border: 1px solid #02B4B5;
    background-color: #02B4B5;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

    button:active {
        transform: scale(0.95);
    }

    button:focus {
        outline: none;
    }

    button.ghost {
        background-color: transparent;
        border-color: #FFFFFF;
    }

form {
    background-color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 50px;
    height: 100%;
    text-align: center;
}

input {
    background-color: #eee;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}




.sign-in-container {
    left: 0;
    width: 50%;
    z-index: 2;
    padding-right: 50%;
}

header {
    text-align: center;
    color: #02B4B5; /* Adjust the color as needed */
    margin-bottom: 20px;
}

    header h1 {
        margin-top: 20px;
        font-size: 24px;
        font-weight: bold;
        color: #333; /* Adjust the color as needed */
    }

.container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
    position: relative;
    width: 768px;
    max-width: 100%;
    overflow: hidden;
    min-height: 100%;
    margin: 0 auto; /* Centering the container horizontally */
    align-items: center;
}

.form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: auto;
    width: 80%; /* Adjust the width as needed */
    max-width: 400px; /* Adjust the maximum width as needed */
    padding: 20px; /* Add padding for better appearance on smaller screens */
    background-color: white; /* Add a background color */
    border: 1px solid #ccc; /* Add a border for better visibility */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Add a box shadow for depth */
    transition: all 0.6s ease-in-out;
}