/* styles.css */

.facebook-button {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    width:100%;
    margin:10px;
}

.facebook-button:hover {
    background-color: #1877f2;
    color: #fff;
}

.facebook-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.google-button {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    width:100%;
    margin:10px;
}

.google-button:hover {
    background-color: #4285F4;
    color: #fff;
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.apple-button {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    width:100%;
    margin:10px;
}

.apple-button:hover {
    background-color: #000;
    color: #fff;
}

.apple-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.microsoft-button {
    display: block;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid silver;
    border-radius: 5px;
    padding: 10px 20px;
    color: #000;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
    width:100%;
    margin:10px;
}

.microsoft-button:hover {
    background-color: #0078d4;
    color: #fff;
}

.microsoft-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

.linea_texto {
    overflow: hidden;
    text-align: center;
    font-size: 100%;
    margin-top: 10px;
    color: #2F2F2F;
}
.linea_texto:before,
.linea_texto:after {
    background-color:  #2F2F2F;
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    color:  #2F2F2F;
}
.linea_texto:before {
    right: 0.5em;
    margin-left: -50%;
    color:  #2F2F2F;
}
.linea_texto:after {
    left: 0.5em;
    margin-right: -50%;
    color:  #2F2F2F;
}