@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

* {
    margin: 0;
    padding: 0;

    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #fff;
}

p {
    cursor: pointer;
    font-weight: 600;
    color: slateblue;
}

h1 {
    font-size: 1.8em;
    color: slateblue;
    padding: 0px 0px 35px 15px;
}

h2 {
    font-size: 1.4em;
    color: slateblue;
}

input {
    width: 80%;
    height: 30px;
    border: none;
    border-bottom: 1px solid silver;
    outline: none;
    font-weight: 600;
    color: #1c1c1c;
    padding-left: 3px;
}

button {
    cursor: pointer;
    width: 120px;
    height: 35px;
    border: none;
    border-radius: 5px;
    background: slateblue;
}

body {
    width: 100%;
    height: 100vh;
    background-image: url('../img/fundo.png');
    background-repeat: no-repeat;
    background-size: 100%;
    
    display: flex;
    justify-content: center;
    align-items: center;
}

    #container {
        width: 320px;
        height: 520px;
        border-radius: 10px;
        -webkit-box-shadow: 0px 0px 6px -1px #000000; 
        box-shadow: 0px 0px 6px -1px #000000;
        background: #785eef;

        display: flex;
        align-items: center;
    }   

        #container .banner {
            width: 520px;
            height: 520px;
            border-top-left-radius: 10px;
            border-bottom-left-radius: 10px;
            background: #785eef;

            display: none;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
        }

        #container .box-login {
            width: 320px;
            height: 520px;
            border-radius: 10px;
            background: #fff;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

            .box-login .box {
                width: 80%;
                height: 320px;

                display: flex;
                flex-direction: column;
                justify-content: space-around;
                align-items: center;
            }

                .box .social {
                    width: 240px;
                    height: 42px;

                    display: flex;
                    justify-content: space-evenly;
                    align-items: center;
                }

                    .social img {
                        cursor: pointer;
                    }

            .box-login .box-account {
                width: 80%;
                height: 360px;

                display: flex;
                flex-direction: column;
                justify-content: space-around;
                align-items: center;
            }
    
    #bubble {
        cursor: pointer;
        position: absolute;
        width: 50px;
        height: 50px;
        right: 15px;
        bottom: 15px;
        border-radius: 50%;
        border: 1px solid #483D8B;
        background: slateblue;

        display: flex;
        justify-content: center;
        align-items: center;
    }
    :root {
        --primary: #785eef;
        --primary-dark: #5f43c9;
        --bg: #f5f5f5;
        --text: #333;
        --border: #ccc;
        --radius: 8px;
        --transition: 0.3s ease;
      }
      
      * {
        box-sizing: border-box;
      }
      
      body {
        margin: 0;
        font-family: 'Roboto', sans-serif;
        background: var(--bg);
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
      }
      
      .login-form {
        background: #fff;
        padding: 2rem;
        border-radius: var(--radius);
        box-shadow: 0 4px 16px rgba(0,0,0,0.1);
        width: 100%;
        max-width: 360px;
      }
      
      .login-form h1 {
        margin-bottom: 1.5rem;
        font-size: 1.6rem;
        color: var(--primary);
      }
      
      .form-group {
        margin-bottom: 1rem;
      }
      
      .form-group label {
        display: block;
        margin-bottom: .5rem;
        color: var(--text);
      }
      
      .form-group input {
        width: 100%;
        padding: .75rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        transition: border var(--transition);
      }
      
      .form-group input:focus {
        border-color: var(--primary);
        outline: none;
      }
      
      .password-wrapper {
        position: relative;
      }
      
      .toggle-password {
        position: absolute;
        right: .5rem;
        top: 50%;
        transform: translateY(-50%);
        background: transparent;
        border: none;
        cursor: pointer;
      }
      
      .form-options {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1.5rem;
      }
      
      .form-options a {
        font-size: .9rem;
        color: var(--primary);
        text-decoration: none;
      }
      
      .btn-primary {
        width: 100%;
        padding: .75rem;
        background: var(--primary);
        color: #fff;
        border: none;
        border-radius: var(--radius);
        font-size: 1rem;
        cursor: pointer;
        transition: background var(--transition);
      }
      
      .btn-primary:hover {
        background: var(--primary-dark);
      }
      
      .divider {
        text-align: center;
        margin: 1.5rem 0;
        position: relative;
      }
      
      .divider span {
        background: #fff;
        padding: 0 .5rem;
        position: relative;
        z-index: 1;
      }
      
      .divider::before {
        content: '';
        width: 100%;
        height: 1px;
        background: var(--border);
        position: absolute;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        z-index: 0;
      }
      
      .social-login {
        display: flex;
        gap: .5rem;
        justify-content: center;
      }
      
      .btn-social {
        flex: 1;
        padding: .5rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: #fff;
        cursor: pointer;
        font-size: .9rem;
        transition: background var(--transition), border var(--transition);
      }
      
      .btn-social:hover {
        background: #f0f0f0;
      }
      
      .btn-social.facebook { border-color: #3b5998; }
      .btn-social.google   { border-color: #db4437; }
      .btn-social.github   { border-color: #24292e; }
      
      .signup {
        text-align: center;
        margin-top: 1.5rem;
        font-size: .9rem;
        color: var(--text);
      }
      
      .signup a {
        color: var(--primary);
        text-decoration: none;
      }
      