* {
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #EEEEEE;
}

.container {
    display: flex;
    flex-flow: row wrap;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #FFFFFF;
    width: 800px;
    height: 400px;
    margin: 10px;
}

.title {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    font-weight: bold;
    font-size: 30px;
    background-color: #007AFF;
    height: 20%;
    width: 100%;
    color: white;
}

.zoneone {
    display: flex;
    height: 80%;
    padding: 20px;
    flex-flow: row wrap;
    width: 45%;
    gap: 10px;
}

.zoneone > div {
    width: 100%;
}

.label {
    color: #7F7877;
    margin-bottom: 15px;
}

input {
    all: unset;
    padding: 10px;
    border: 1px solid #ddd;
    caret-color: #007AFF;
    border-radius: 5px;
    width: 93%;
}

.email {
    margin-bottom: 10px;
}

.button {
    all: unset;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    border-radius: 10px;
    color: white;
    width: 100%;
    height: 10%;
    background-color: #007AFF;
}

.or {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80%;
    width: 10%;
    color: #7F7877;
}

.zonetwo {
    padding: 10px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-flow: row wrap;
    height: 75%;
    width: 45%
}

.connect {
    color: #7F7877;
}

.facebook, .twitter, .linkedin {
    color: white;
}

.facebook {
    background-color: #007AFF;
}

.twitter {
    background-color: #1EA1F3;
}

.linkedin {
    background-color: #0177B5;
}

.connect, .facebook, .twitter, .linkedin {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 18%;
    padding: 10px;
    border-radius: 10px;
}


