@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* Variables */
:root {
    --primary-color:#6369f5;
    --secondary-color:#f5f4fa;
    --text-color:#444444;
    --white-color:#fff;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}
body{
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
}
.container{
    position: relative;
    width: 100%;
    max-width: 900px;
    padding: 40px;
    display: flex;
    gap: 80px;
    border-radius: 10px;
    background-color: #111111;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 10%;
}
.left{
    width: 55%;
}
.heading{
    font-size: 35px;
    font-weight: 600px;
    line-height: 1;
    color: var(--primary-color);
}
.text{
    font-size: 14px;
    color: var(--text-color);
    margin-top: 10px;
}
form{
    position: relative;
    margin-bottom: 20px;
}
.inputbox input,
.inputbox textarea{
    width: 100%;
    padding: 10px;
    margin: 10px;
    font-size: 16px;
    border-radius: 5px;
    color: #ffffff;
    border: none;
    outline: none;
    background-color: #33333349;
}
.inputbox input,
.inputbox textarea::placeholder{
    color: #ffffff;
    opacity: 0.5;
    font-size: 12px;
    background-color: #33333349;
}
.inputbox textarea {
    resize: none;
    height: 150px;
    background-color: #33333349;
}
.btn{
    width: 100%;
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    color: var(--white-color);
    background-color: var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: 0.5s;
    
}
.btn:hover{
    background-color: #4b52d8;
}
.right{
    width: 45%;
}
.illustration{
    display: flex;
    width: 100%;
    margin: 0 auto;
}
.illustration img{
    width: 70%;
    margin: auto;
    margin-top: 30px;

}
.contact-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 50%;

}
.infobox{
    display: flex;
    align-items: center;
    gap: 10px;
}
.infobox .icon{
    width: 40px;
    height: 40px;
    font-size: 20px;
    display: flex;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);

}
.infobox .text{
    margin: 0;
}
.infobox .text a{
    text-decoration: none;
    color: var(--text-color);

}