
@font-face {
    font-family: "Poppins-Regular";
    src: local("Poppins-Regular"), url("../assets/fonts/Poppins-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Poppins-Medium";
    src: local("Poppins-Medium"), url("../assets/fonts/Poppins-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "PlayfairDisplay-Bold";
    src: local("PlayfairDisplay-Bold"), url("../assets/fonts/PlayfairDisplay-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "PlayfairDisplay-Regular";
    src: local("PlayfairDisplay-Regular"), url("../assets/fonts/PlayfairDisplay-Regular.ttf") format("truetype");
}
form {
    font-family: Poppins-Regular;
    justify-content: center;
    display: grid;
}
/* Full-width inputs */
input[type=text], input[type=password] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Set a style for all buttons */
button {
    border-radius: 15px;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

.buttonLogin {
    width: 99%;
    height: 50px !important;
    border-radius: 25px !important;
    color: white !important;
    background-image: linear-gradient(223deg,#f4b600 0%,#e57f00 100%) !important;
    font-size: 18px;
    font-family: Poppins-Medium;
    text-transform: none !important;
    float: right;
}

/* Add a hover effect for buttons */
button:hover {
    opacity: 0.8;
}

/* Extra style for the cancel button (red) */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Center the avatar image inside this container */
.imgcontainer {
    text-align: center;
    justify-content: center;
    margin: 24px 0 12px 0;
    display: flex;
    height: 78px;
    line-height: 50px;
}

/* Avatar image */
img.logo {
    color: white !important;
    width: 50px !important;
    font-size: 25px;
    height: 50px !important;
    border-radius: 15px;
    margin-right: 10px;
    margin-left: 5vw;
}

.inputContainer {
    display: flex;
}

.placeholder {
    width: 33%;
    font-family: Poppins-Regular;
    height: 50px !important;
    line-height: 48px !important;
    color: #BEBEBE;
    text-align: center;
    margin: 8px;
    margin-right: 0px;
    border: 1px solid #ccc;
    border-right: 0px;
}

.textBox {
    width: 66%;
    font-family: Poppins-Regular;
    height: 50px !important;
    margin-left: 0px;
    line-height: 50px !important;
}

.brandRegular {
    font-family: PlayfairDisplay-Regular;
    cursor: pointer;
}

.brandBold {
    font-family: PlayfairDisplay-Bold;
    cursor: pointer;
}

/* Add padding to containers */
.container {
    padding: 16px;
    padding-top: 0px;
}

.socialContainer {
    padding: 0px 16px 16px 16px;
    justify-content: center;
    display: flex;
}

/* The "Forgot password" text */
span.psw {
    float: right;
    padding-top: 16px;
}

.socialButton {
    background-color: lightgray;
    margin: 10px !important;
    box-shadow: 5px 5px 5px gray;
    border-radius: 15px;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100px;
    text-align: center;
}

.socialLogo {
    width: 50%;
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }

    .cancelbtn {
        width: 100%;
    }
}

@media screen and (min-width: 600px) {
    input[type=text], input[type=password] {
        width: 250px;
    }

    .buttonLogin {
        width: 200px;
    }

    .placeholder {
        width: 150px;
    }

    .socialButton {
        background-color: lightgray;
        width: 100px;
        margin: 10px !important;
        box-shadow: 5px 5px 5px gray;
    }

    .socialLogo {
        width: 50%;
    }
}