
body {
    margin: 0;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/factory.jpg"); 
    background-size: cover;
    background-repeat: no-repeat;
}

p {
    color: #A7A7A7;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.container-login {
    height: 100vh;
    display: grid;
    grid-template-columns: 2fr 2fr 3fr 3fr 2fr 2fr;
    grid-template-rows: Auto 1fr Auto 1fr Auto Auto;
}

.logo-container {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 4;
    padding: 4% 4% 10px 4%;
}
.logo { height: 80px;
}

.login-controls {
    grid-row-start: 3;
    grid-row-end: 4;
    grid-column-start: 2;
    grid-column-end: 6;

    padding:5%;
    text-align: center;
}
.news {
    grid-row-start: 5;
    grid-row-end: 6;
    grid-column-start: 1;
    grid-column-end: 4;
    padding: 10px 30% 10px 4%;
}

.sociallogos {
    grid-row-start: 6;
    grid-row-end: 7;
    grid-column-start: 1;
    grid-column-end: 4;
    padding: 10px 4% 2% 4%;
}
.sociallogos img {
    height: 30px;
    width: 30px;
}

.copyright {
    grid-row-start: 6;
    grid-row-end: 7;
    grid-column-start: 4;
    grid-column-end: 7;
    text-align: right;
    padding: 10px 4% 2% 4%;
}

.detail-collection {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
    color: white;
}

.detail-collection input[type="text"] {
    outline: 0;
    border-radius: 10px;
    width: 300px;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    background-color: rgba(158, 158, 158, 0.3);
    color: white;
    box-sizing: border-box;
    font-size: 16px;
}

.detail-collection input[type="password"] {
    outline: 0;
    border-radius: 10px;
    width: 300px;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    background-color: rgba(158, 158, 158, 0.3);
    color: white;
    box-sizing: border-box;
    font-size: 16px;
}

.detail-collection input[type="text"]:hover {
    background-color: rgba(158, 158, 158, 0.7);
    transition: all 1s ease 0s;
}

.detail-collection input[type="text"]:focus {
    background-color: rgba(158, 158, 158, 0.7);
    transition: all 1s ease 0s;
}

.detail-collection input[type="password"]:hover {
    background-color: rgba(158, 158, 158, 0.7);
    transition: all 1s ease 0s;
}

.detail-collection input[type="password"]:focus {
    background-color: rgba(158, 158, 158, 0.7);
    transition: all 1s ease 0s;
}

.detail-collection button {
    text-transform: uppercase;
    outline: 0;
    border-radius: 10px;
    background: #0063B0;
    width: 300px;
    border: 0;
    padding: 15px;
    color: white;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
}

.detail-collection button:hover, .detail-collection button:active, .detail-collection button:focus {
    background-color: #33a3f8;
    transition: all 1s ease 0s;
}

.detail-collection .remember-me {
    margin: 15px 0 0;
}

.detail-collection .remember-me a {
    color: white;
    text-decoration: none;
}
::placeholder {
    color: rgb(250 249 249 / 0.46);
}
@media (max-width: 600px) {
    body { margin: 0; height: 90vh; }
    .container { height: 90vh; display: grid; grid-template-columns: 1fr auto 1fr; }
    .login-controls { grid-column-start: 2; grid-column-end: 3; padding: 0px 20px 0px 20px; }
    .detail-collection input[type="text"] { padding: 10px; }
    .detail-collection input[type="password"] { padding: 10px; }
    .detail-collection button { padding: 10px; }

    .news { display: none; }
    .sociallogos { grid-row-start: 5; grid-row-end: 6; grid-column-start: 2; grid-column-end: 3; text-align: center; padding: 0px; }
    .copyright { grid-column-start: 2; grid-column-end: 3; text-align: center; font-size: 14px; padding: 0px;}
}