:root {
    --blue-color: #0081C9;
    --yellow-color: #FFC93C;
    --dark-gray-color: #343A40;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    background-image: url(/images/home-bg.png);
    background-size: contain;
    background-position: 100% 125%;
    background-repeat: no-repeat;
    padding: 45px;
    text-align: center;
    width: 430px;
    padding-bottom: 144px;
}

#container-content {
    min-height: 481px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container > img {
    margin-bottom: 20px;
    max-width: 100%;
    max-width: 299px;
}

.container h1 {
    font-size: 40px;
    line-height: 37px;
    text-transform: uppercase;
    margin-bottom: 27px;
}

.container h3 {
    color: var(--dark-gray-color);
    font-weight: normal;
    margin-bottom: 8px;
    font-size: 18px;
}

.container h3.tc-text {
    font-size: 16px;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.container .input-row {
    display: grid;
    grid-template-columns: 40px auto;
    align-items: center;
    text-align: left;
    font-size: 20px;
    margin-bottom: 20px;
    border: 1px solid #DCDCDC;;
    height: 56px;
    border-radius: 30px;
    padding: 0 15px;
}

.container .input-row img {
    max-width: 24px;
    margin-bottom: 0;
}

.container .input-row input {
    padding: 7px;
    border: none;
    outline: none;
    font-size: 18px;
}

.container .input-row input::placeholder {
    color: #DCDCDC;
}

.container .submit-btn {
    background-color: var(--blue-color);
    color: #fff;
    border: none;
    outline: none;
    padding: 10px 20px;  
    width: 100%;
    height: 56px;
    border-radius: 30px; 
    font-size: 18px;
    cursor: pointer;
}