﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #FFFF;
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.login_box_line {
    border: 2px solid;
    max-width: 50rem;
    border-color: lightgray;
    border-radius: 10px;
    padding: 3rem 2rem 2rem 4px;
}

    .login_box_line img {
        width: 100px;
        margin-bottom: 1rem;
    }

    .login_box_line p {
        margin-bottom: 2rem;
        font-size: 12px;
    }

    .login_box_line h2 {
        font-size: 2rem;
        color: #090808;
        font-weight: 500;
    }

.input_content {
    text-align: left;
    justify-content: left;
    align-content: center;
    padding-left: 2rem;
}

.login_box_line a {
    cursor: pointer;
    color: lightgray;
}

.btnlogin {
    padding-left: 40px;
    padding-right: 40px;
    width: fit-content;
    padding-bottom: 10px;
    padding-top: 10px;
    border-radius: 9px;
    background: #EA8028;
    border: none;
    font-family: inherit;
    text-align: center;
    cursor: pointer;
    transition: 0.4s;
}

    .btnlogin:hover {
        box-shadow: 7px 5px 56px -14px #EA8028;
    }

    .btnlogin:active {
        transform: scale(0.97);
        box-shadow: 7px 5px 56px -10px #C3D900;
    }

.input-style {
    padding: 6px 12px;
    border: 2px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%; /* full width of its container */
    max-width: 500px; /* optional: limit max size */
    box-sizing: border-box;
    color: #555;
    outline: none;
    transition: all 0.3s ease;
}

    .input-style:focus {
        border-color: #EA8028;
        box-shadow: 0 0 0 0.2rem rgba(234, 128, 40, 0.25);
    }

.regiser_box {
    border: 2px solid;
    max-width: 50rem;
    border-color: lightgray;
    border-radius: 10px;
    padding: 3rem 2rem 2rem 4px;
}

    .regiser_box h2 {
        font-size: 2rem;
        margin-left: 2rem;
        color: #090808;
        font-weight: 500;
    }

    .regiser_box img {
        width: 100px;
        margin-bottom: 1rem;
        margin-left: 1rem;
    }

    .regiser_box p {
        margin-bottom: 2rem;
        font-size: 15px;
        margin-left: 2rem;
        color: gray;
    }

    .regiser_box a {
        cursor: pointer;
        color: lightgray;
    }