* {
    background-color: rgb(27, 27, 27);
}

h1 {
    font-size: 7rem;
    margin-top: 23px;
    margin-bottom: 0;
    font-weight: bold;
    background-color: #fff;
    background-image: linear-gradient(to top, #fff 0%, #e4e4e4 100%);
    background-size: 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    justify-self: center;
    height: 61vh;
    width: 48vh;
    position: relative;
    top: 50px;
    box-shadow: 0 0 7px #3a3a3a;
    border-radius: 15px;
}

.container-buttons {
    display: grid;
    justify-items: center;
    width: 100%;
    height: 100%;
    padding-top: 25px;
    border-radius: 15px;
    background-color: #111111;
}

.container-buttons>div {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #141414;
    width: 70%;
    height: auto;
    font-size: 1.4rem;
    margin-bottom: 20px;
    border: 1px solid #fff;
    border-radius: 20px;
    transition: all 0.5 ease-in-out;
    cursor: pointer;
}

.container-buttons>div:hover {
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    transform: scale(1.05);
    transition: all 0.5 ease-in-out;
}

.container-buttons>div:active {
    box-shadow: 0 0 5px rgb(82, 213, 249);
    transform: scale(0.92);
    transition: all 0.5 ease-in-out;
    color: #e7e7e7;
}

input {
    width: 80%;
    height: 40px;
    margin-top: 20px;
    border: 1px solid #cacccf;
    border-radius: 24px;
    padding-left: 15px;
    font-size: 19px;
    outline: none;
    color: #fff;
    font-size: 1.3rem;
}

input:focus {
    box-shadow: 0 0 5px rgba(81, 203, 238, 1);
    border: 1px solid rgba(81, 203, 238, 1);
    transform: scale(1.05);
}

#github::before {
    background-image: url();
}

#apple::before {
    background-image: url();

}

#facebook::before {
    background-image: url();
}