* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "poppins", sans-serif;
}

a {
    color: inherit !important;
    text-decoration: none !important;
    border: 0 !important;
}

body {
    background-color: #c9d6ff;
    background: linear-gradient(to right, #e2e2e2, #c9d6ff);
}

.container {
    background: #fff;
    width: 450px;
    padding: 1.5rem;
    margin: 50px auto;
    border-radius: 10px;
    box-shadow: 0 20px 35px rgba(0, 0, 1, 0.9);
}

form {
    margin: 0 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
    padding: 1.3rem;
    margin-bottom: 0.4rem;
}

input {
    color: inherit;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #757575;
    padding-left: 1.5rem;
    font-size: 15px;
}

.input-group {
    padding: 1% 0;
    position: relative;
}

.county-icons{
    padding-top: 8px;
}

#countryCode{

    padding: 8px;
    margin: 0px 15px 30px;
    color: gray;
    width: 310px;
    border: 0px;
    font-size: 0.95rem;
}

#countryCode:active {
    border: 0px;
}

.input-group i {
    position: absolute;
    color: black;
}

input:focus {
    background-color: transparent;
    outline: transparent;
    border-bottom: 2px solid hsl(327, 90%, 28%);
}

input::placeholder {
    color: transparent;
}

label {
    color: #757575;
    position: relative;
    left: 1.2em;
    top: -1.3em;
    cursor: auto;
    transition: 0.3s ease all;
}

input:focus~label,
input:not(:placeholder-shown)~label {
    top: -3em;
    color: hsl(327, 90%, 28%);
    font-size: 15px;
}

.recover {
    text-align: right;
    font-size: 1rem;
    margin-bottom: 1rem;

}

.recover a {
    text-decoration: none;
    color: #ff6f6f;
}

.recover a:hover {
    color: blue;
    text-decoration: underline;
}

button {
    font-size: 1.1rem;
    padding: 8px 0;
    border-radius: 5px;
    outline: none;
    border: none;
    width: 100%;
    background: #ff6f6f;
    color: white;
    cursor: pointer;
    transition: 0.9s;
}

button:hover {
    background: #07001f;
}

.or {
    font-size: 1.1rem;
    /* margin-top:0.5rem; */
    text-align: center;
    margin: 20px 20px;

}

.icons {
    text-align: center;
}

.icons i {
    color: #ff6f6f;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-size: 1.5rem;
    cursor: pointer;
    border: 2px solid #dfe9f5;
    margin: 0 15px;
    transition: 1s;
}

.icons i:hover {
    background: #07001f;
    font-size: 1.6rem;
    border: 2px solid #ff6f6f;
}

.links {
    display: flex;
    justify-content: space-around;
    padding: 0 4rem;
    margin-top: 0.9rem;
    font-weight: bold;
}

#signUpButton,
#signInButton {
    color: #ff6f6f;
    border: none;
    background-color: transparent;
    font-size: 1rem;
    font-weight: bold;
}

#signUpButton:hover,
#signInButton:hover {
    text-decoration: underline;
    color: blue;
}

.messageDiv {
    background-color: hsl(327, 90%, 28%);
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border-radius: 5px;
    font-size: 1rem;
    opacity: 0;
    animation: fadeOut 7s forwards;

}



/* ------------------------------ */

.RegisterType{
    display: flex;
    /* flex-wrap: wrap; */
    margin: 30px 0px;
}





  /* ------------------------------------------------------------- */
  /* --------------------------------------------------------------------- */


  .messageDiv {
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    font-size: 16px;
}

.messageDiv.error {
    background-color: #f8d7da;
    color: #721c24;
}

.messageDiv.success {
    background-color: #d4edda;
    color: #155724;
}


/* ====================================== */


@media (min-width:05px) and (max-width: 500px) {

div#signup {
    width: 100%;
}

}

