* {
    font-family: Poppins;
}

body {
    background-color: #EEE5DD;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

/* Wrapper CSS */
#container {
    background-color: #EEE5DD;
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin-left: 20px;
    margin-right: 20px;
}

/* Image CSS */
#clydeLogo {
    display: block;
    margin: 0 auto 80px;
    width: 450px;
    height: auto;
}

/* Input CSS */
.form-control {
    border-radius: 0px;
    height: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.form-control:hover {
    border: 2px solid #5626E1;
    box-shadow: none;
}

.form-control:focus {
    border: 2px solid #5626E1;
    box-shadow: none;
}

input::placeholder {
    color: #000;
}

.form-label {
    display: none;
}

/* Submit Btn CSS */
#submitBtn {
    background-color: #5626E1;
    border-color: #5626E1;
    color: #FFF;
    border-radius: 10px;
    height: 50px;
    width: 50%;
    margin: auto;
    transition: background-color 0.3s ease;
    font-size: 20px;
    font-weight: 600;
}

#submitBtn:hover{
    background-color: #111232;
}