@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif !important;
    background: linear-gradient(112.1deg, rgb(32, 38, 57) 11.4%, rgb(63, 76, 119) 70.2%);
    /* height: 100vh; */
}

#container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    width: 800px;
    max-width: 100%;
    min-height: 480px;
}

.btn-submit {
    display: block;
    margin: 0px auto;
    border-radius: 20px;
    border: 1px solid #FF4B2B;
    background-color: #c2272f;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
    cursor: pointer;
}

.btn-submit:active {
    transform: scale(0.95);
}

.btn-submit:focus {
    outline: none;
}


.overlay-container {
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #c2272f, #FF416C);
    background-repeat: no-repeat;
    background-size: cover;
    color: #FFFFFF;
    transform: translateX(0);
    transition: transform 0.6s ease-in-out;
}


@media (max-width: 530px) {
    #container {
        width: 90%;
    }

    .overlay-container,
    .form-container {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

.container-icon {
    margin: 0px auto;
    border-radius: 50%;
    overflow: hidden;
}

.image-container {
    width: 150px; 
    height: 150px;
    border-radius: 50%; 
    overflow: hidden; 
    margin: 20px auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border: 2px solid #ddd; 
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
