﻿.LoginSignin {
    margin: 20px auto;

    width: 95%;
    max-width: 400px;
    min-width: 300px;
    //height: 100px;

    /border: 1px solid black;
}

.headingSignin {
    margin: 5px auto;

    font-weight: bold;

    text-align: center;
}



.SigninTexts {
    display: flex;
    align-items: center;
    justify-content: space-around;

    margin: 5px auto;

    width: 98%;
    min-width: 290px;
    height: 35px;

    border-radius: 5px;

    border: 2px solid black;
}

.SigninNameLabel {
    width: 30%;
}

.SigninNameTBox {
    width: 60%;

    border: none;
}



.SigninBtn {
    display: flex;
    align-items: center;
    justify-content:center;

    margin: 7px auto 10px auto;

    /width: 66%;
    min-width: 200px;
    height: 48px;

    border-radius: 5px;

    /background-color: lawngreen;
    /border: 2px solid black;
}

.SigninBtn:active {
    transform: scale(0.98);
}

.SigninBtn:hover {
    opacity: 0.85;
}

.SigninSmbtBtn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    height: 100%;

    text-decoration: none;
    font-weight: bold;
    color: black;

    width: 100%;
    background: #1a73e8;
    color: #fff;
    font-weight: 600;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}