:root {
    --color-primary: rgba(0, 0, 0, 0.3);
    --color-secondary: #5c95f1;
    --color-black: #090909;
    --color-white: #ffffff;
    --color-grey: #f8f9fa;
    --color-light-grey: #dadce0;
    --color-dark-grey: #3c4043;

    --text-color: rgba(255, 255, 255, 0.6);
    --text-color-secondary: rgba(255, 255, 255, 0.3);
    --text-color-link: #03dac5;

    --font-family: Arial, sans-serif;

    --font-size-small: 1.2rem;
    --font-size-medium: 1.4rem;
    --font-size-large: 1.8rem;
    --font-size-x-large: 2.3rem;
    --font-size-xx-large: 3.4rem;
    --font-size-xxx-large: 4.8rem;

    --font-weight-regular: 400;
    --font-weight-bold: 700;

    --line-height-small: 1.2;
    --line-height-base: 1.5;
    --line-height-big: 1.8;
}

body {
    background: #2c3e50;
    background: linear-gradient(#2c3e50, #12100e);
    color: var(--text-color);
    font-family: "RobotoDraft", "Roboto", sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
    /*-moz-osx-font-smoothing: grayscale;*/
}

/* Title index */
.containerdos .row {
    display: block;
}

/* Pen Title */
.pen-title {
    padding: 20px 0;
    text-align: center;
    letter-spacing: 2px;
}

.pen-title h1 {
    margin: 0 0 20px;
    font-size: 36px;
    font-weight: var(--font-weight-bold);
}

.pen-title span .fa {
    color: var(--text-color-link);
}

.pen-title h1 small {
    color: #bdbfc1;
}

.container {
    position: relative;
    max-width: 460px;
    width: 100%;
    height: 100%;
    margin: 40px auto 50px;
}

.containerdos {
    position: relative;
    max-width: 1000px;
    width: 100%;
    height: 100%;
    margin: 40px auto 50px;
}

/* Card */
.card {
    position: relative;
    background: var(--color-primary);
    border-radius: 5px;
    padding: 40px 0 40px 0;
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
    -webkit-transition: 0.3s ease;
    transition: 0.3s ease;
    /* Title */
    /* Inputs */
    /* Button */
    /* Footer */
    /* Alt Card */
}

.card .title {
    position: relative;
    z-index: 1;
    border-left: 5px solid var(--text-color-link);
    margin: 0 0 35px;
    padding: 10px 0 10px 50px;
    color: var(--text-color);
    font-size: 32px;
    font-weight: var(--font-weight-bold);
}

.card .input-container {
    position: relative;
    margin: 0 60px 40px;
}

.card .input-container input {
    outline: none;
    z-index: 1;
    position: relative;
    background: none;
    width: 100%;
    height: 54px;
    border: 0;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
}

.card .input-container input:focus~label {
    color: var(--text-color-link);
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.card .input-container input:focus~.bar:before,
.card .input-container input:focus~.bar:after {
    width: 50%;
}

.card .input-container input:valid~label {
    color: #9d9d9d;
    -webkit-transform: translate(-12%, -50%) scale(0.75);
    transform: translate(-12%, -50%) scale(0.75);
}

.card .input-container label {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--text-color);
    font-size: 24px;
    font-weight: 300;
    line-height: 60px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.card .input-container .bar {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #757575;
    width: 100%;
    height: 1px;
}

.card .input-container .bar:before,
.card .input-container .bar:after {
    content: "";
    position: absolute;
    background: var(--text-color-link);
    width: 0;
    height: 2px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
}

.card .input-container .bar:before {
    left: 50%;
}

.card .input-container .bar:after {
    right: 50%;
}

.card .button-container {
    margin: 0 60px;
    text-align: center;
}

.card .button-container button {
    outline: 0;
    cursor: pointer;
    position: relative;
    display: inline-block;
    background: 0;
    width: 240px;
    border: 2px solid var(--text-color-link);
    padding: 20px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    overflow: hidden;
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
}

.card .button-container button span {
    position: relative;
    z-index: 1;
    color: var(--text-color-link);
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
}

.card .button-container button:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    background: var(--text-color-link);
    width: 30px;
    height: 30px;
    border-radius: 100%;
    margin: -15px 0 0 -15px;
    opacity: 0;
    -webkit-transition: 0.8s ease;
    transition: 0.8s ease;
}

.card .button-container button:hover,
.card .button-container button:active,
.card .button-container button:focus {
    background: var(--text-color-link);
    color: var(--color-black);
    font-weight: bold;
    border-radius: 5px;
    box-shadow: 0 0 5px var(--text-color-link), 0 0 25px var(--text-color-link),
        0 0 40px var(--text-color-link);
}

.card .button-container button:hover span,
.card .button-container button:active span,
.card .button-container button:focus span {
    color: var(--color-black);
}

.card .button-container button:active span,
.card .button-container button:focus span {
    color: var(--color-black);
}

.card .button-container button:active:before,
.card .button-container button:focus:before {
    opacity: 1;
    -webkit-transform: scale(10);
    transform: scale(10);
}

.card .footer {
    margin: 40px 0 0;
    color: var(--text-color-secondary);
    font-size: 15px;
    font-weight: 300;
    text-align: center;
}

.myTestLogo {
    top: 15px;
    left: 15px;
    position: fixed;
}

/*
.card.alt {
  position: absolute;
  top: 40px;
  right: 15px;
  z-index: 10;
  width: 100px;
  height: 100px;
  background: none;
  border-radius: 100%;
  box-shadow: none;
  padding: 0;*/
/* Toggle */
/* Title */
/* Input */
/* Button *
}*/
/*.toggle{
  position: relative;
  background: #ec2652;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  font-size: 42px;
  line-height: 100px;
  text-align: center;
  cursor: pointer;
}*/
.myLogo {
    display: inline-block;
    background-image: url(../img/estratificacionV6.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 80px 80px;
    width: 80px;
    height: 80px;
    margin: 0;
}

/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}

@keyframes buttonFadeInUp {
    0% {
        bottom: 30px;
        opacity: 0;
    }
}