#contato .form-check-input[type="checkbox"] {
            border-radius: .25em;
            border-color: rgb(94, 93, 93);
            margin-bottom: auto;
  }
  #contato .auth-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        #contato .auth-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            max-width: 450px;
            width: 100%;
        }

        #contato .auth-header {
            background: white;
            color: white;
            padding: 40px 30px 30px;
            text-align: center;
        }

        #contato .logo {
           
            height: 60px;
            /* background: white; */
            /* border-radius: 50%; */
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 24px;
            color: #ffffff;
            font-weight: bold;
        }

        #contato .auth-tabs {
            display: flex;
            background: #c9c9c948 ;
            border-radius: 50px;
            padding: 4px;
            margin-top: 50px;
        }

        #contato.tab-btn {
            flex: 1;
            background: none;
            border: none;
            color: rgba(78, 77, 77, 0.7);
            padding: 12px 20px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        #contato .tab-btn.active {
            background: white;
            color: #764ba2;
        }

        #contato .auth-form {
            padding: 0px 30px 40px 30px;
        }

        #contato  .form-group {
            margin-bottom: 20px;
        }

        #contato .form-input {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s ease;
            background: #fafbfc;
        }

        #contato .form-input:focus {
            outline: none;
            border-color: #764ba2;
            background: white;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        #contato .form-input::placeholder {
            color: #9ca3af;
        }

        #contato .btn-primary {
            width: 100%;
            background: linear-gradient(135deg, #764ba2 0%, #764ba2 100%);
            border: none;
            border-radius: 12px;
            padding: 16px;
            font-size: 16px;
            font-weight: 600;
            color: white;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        #contato .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        #contato .form-check {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0;
        }

        #contato .form-check-input {
            width: 18px;
            height: 18px;
        }

        #contato .forgot-password {
            text-align: center;
            margin-top: 20px;
        }

        #contato   .forgot-password a {
            color: #764ba2;
            text-decoration: none;
            font-size: 14px;
        }

        #contato .forgot-password a:hover {
            text-decoration: underline;
        }

        #contato .error-message {
            color: #ef4444;
            font-size: 14px;
            margin-top: 5px;
        }

        #contato .tab-content {
            display: none;
        }

        #contato .tab-content.active {
            display: block;
        }

        #contato .input-icon {
            position: relative;
        }

        #contato .input-icon i {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
        }

        #contato .input-icon .form-input {
            padding-left: 50px;
        }

        @media (max-width: 768px) {
            #contato .auth-container {
                padding: 10px;
            }

            #contato .auth-card {
                border-radius: 12px;
            }

            #contato .auth-header {
                padding: 30px 20px 20px;
            }

            #contato .auth-form {
                padding: 30px 20px;
            }
        }