body{
    font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
    background: #d7d9dc;
    margin: 0;
}



.main-layout{
    display:flex;
    flex-direction: column;
    align-items: center;
    padding:30px;
    gap:40px;
	max-width:1100px;
    margin:auto;
}



.logo-img{
    height:35px;
}



.container{
    display:flex;
    gap:25px;
}



.card{
    background:white;
    border-radius:16px;
    padding: 18px 35px 14px 15px;
    width:320px;
    box-shadow:0 6px 12px rgba(0,0,0,0.15);
}

.card.center {
    display: flex;
    flex-direction: column;  
    align-items: center;     
    justify-content: flex-start; 
    height: auto;             
    padding: 18px 22px;       
    gap: 8px;                
}

.card.connect {
    display: none;
    flex-direction: column;  
    align-items: center;     
    justify-content: flex-start; 
    height: auto;             
    padding: 18px 22px;       
    gap: 8px;                
}

.card:first-child .card-header {
    display: flex;            
    align-items: center;      
    justify-content: center;  
    gap: 10px;                
    margin-bottom: 6px;       
}

.card:first-child input {
    padding: 3px 8px;  
    font-size: 13px;   
    margin-bottom: 2px; 
	margin-top: 0px;
}

.card:first-child label {
    margin-bottom: 2px; 
    margin-top: 0;      
}

.center{
    text-align:center;
}



.card-header {
    display: flex;          
    align-items: center;    
    gap: 10px;              
    margin-top: 0;
    margin-bottom: 6px;     
}

.card-header h2{
    font-size:18px;
    font-weight:500;
}



.step{
    width:32px;
    height:32px;
    background:#ff6a00;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:bold;
}



label{
    display:block;
    font-size:13px;
    margin-bottom:1px;
	margin-left:0px;
	margin-top: 0px;
}

input{
    width:100%;
    padding:8px;
    border-radius:10px;
    border:2px solid #333;
    margin-bottom:3px;
	margin-left:0px;
		margin-top: 0px;

}

.row{
    display:flex;
	margin: 0;     
    padding: 0;  
    gap:25px;
}

.field{
    flex: 1;
    margin: 0;     
    padding: 0; 
}



.btn-primary {
    background: linear-gradient(to bottom, #ffb366, #ff6600); 
    border: none;
    color: white;
	  font-size: 16px;        
    padding: 14px 28px; 
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}


.btn-primary:hover {
    background: linear-gradient(to bottom, #ff6600, #ffb366); 
    transform: scale(0.98);  
}

.btn-secondary{
    background:#bfbfbf;
    border:none;
	  font-size: 16px;        
    padding: 14px 28px; 
    border-radius:10px;
    font-weight:bold;
    cursor:pointer;
}

.btn-primary, .btn-secondary {
    font-size: 16px;        
    padding: 14px 28px;     
    font-weight: 700;       
    border-radius: 10px;    
}

.btn-primary:disabled {
    background: #555555;
}

.button-row{
    display:flex;
    justify-content:center;
    gap:12px;
}

.button-bottom{
    display:flex;
    justify-content:baseline;
    gap:12px;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;  
        align-items: center;     
    }

    .logo-area {
        order: -1;               
        margin-bottom: 20px;     
    }

    .cards {
        flex-direction: column;  
        gap: 16px;               
        width: 100%;
        align-items: center;
    }

    .card {
        width: 90%;              
    }

    .logo-img {
        height: 35px;            
    }
}