﻿.form-container {
    background-color: #fff;
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 350px;
    height:fit-content;
    text-align: center;
    margin: 20px;
}

.form-group {
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-textarea {
    width: 100%;
    padding: 10px;
    resize:vertical;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-select {
    width: 280px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
    margin-bottom: 15px;
}

.form-button {
    width: 100%;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
}

.form-actions button{
    width: 30%;
}

.supplier-name {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

.department-name {
    margin-bottom: 0;
    border: none;
    border-radius: 0;
}

@media (max-width:400px){
    .form-container {
        padding: 20px 10px;
        margin: 20px 10px;
    }
}